Updated paths

This commit is contained in:
Blade Barringer 2015-02-03 18:55:17 -06:00
parent 14e5f475ab
commit bf6fdf8d9d
2 changed files with 6 additions and 7 deletions

View file

@ -25,7 +25,7 @@ var paths = {
app: './website/public/css/index.styl',
staticPage: './website/public/css/static.styl' // static is a 'future' reserved word
},
dest: './build/'
dest: './website/build/'
},
common: {
src: ['./common/index.js'],
@ -145,7 +145,6 @@ gulp.task('sprite', function(cb) {
STEP++;
console.log("Finished spritesmith" + key + ".png");
if(STEP >= COUNT) {
gulp.src(paths.sprites.cssminSrc)
.pipe(cssmin())
.pipe(rename('habitrpg-shared.css'))

View file

@ -32,16 +32,16 @@
"bower_components/jquery-ui/ui/minified/jquery.ui.mouse.min.js",
"bower_components/jquery-ui/ui/minified/jquery.ui.sortable.min.js",
"habitrpg-shared.js",
"common/habitrpg-shared.js",
"js/env.js",
"js/app.js",
"js/configs/config.js",
"common/config.js",
"js/services/sharedServices.js",
"js/services/notificationServices.js",
"js/services/userServices.js",
"js/directives/common-directives.js",
"common/userServices.js",
"common/directives.js",
"js/services/groupServices.js",
"js/services/memberServices.js",
"js/services/guideServices.js",
@ -101,7 +101,7 @@
"bower_components/css-social-buttons/css/zocial.css",
"bower_components/jquery-colorbox/example1/colorbox.css",
"app.css",
"sprites/habitrpg-shared.css",
"common/sprites/habitrpg-shared.css",
"static.css"
]
}