Skip to content

Commit

Permalink
Trim/simplify dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
neersighted committed Jan 2, 2016
1 parent 2e2d9a1 commit 14769a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tgui/gulp/tasks/css.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = ->
s.plsfilters({oldIE: true}),
s.fontweights
])
.pipe g.concat(p.css.out)
.pipe g.rename(p.css.out)
.pipe g.bytediff.start()
.pipe g.if(f.colorblind, g.postcss([s.colorblind]))
.pipe g.if(f.min, g.cssnano(cssnano))
Expand Down
2 changes: 1 addition & 1 deletion tgui/gulp/tasks/js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module.exports = ->
gulp.src p.js.dir + p.js.main
.pipe bundle()
.pipe g.if(f.debug, g.sourcemaps.init({loadMaps: true}))
.pipe g.concat(p.js.out)
.pipe g.rename(p.js.out)
.pipe g.bytediff.start()
.pipe g.if(f.min, g.uglify({mangle: true, compress: {unsafe: true}}))
.pipe g.if(f.debug, g.sourcemaps.write())
Expand Down
5 changes: 1 addition & 4 deletions tgui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,18 @@
"es5-shim": "~4.4.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-bytediff": "~1.0.0",
"gulp-concat": "~2.6.0",
"gulp-cssnano": "~2.0.0",
"gulp-if": "~2.0.0",
"gulp-load-plugins": "~1.1.0",
"gulp-postcss": "~6.0.1",
"gulp-rename": "1.2.2",
"gulp-size": "~2.0.0",
"gulp-sourcemaps": "~1.6.0",
"gulp-stylus": "2.2.0",
"gulp-uglify": "~1.5.1",
"hexa-color-regex": "~1.0.0",
"html5shiv": "~3.7.3",
"ie8": "~0.2.9",
"merge2": "~0.3.6",
"mini-signals": "~1.1.0",
"minimist": "1.2.0",
"pleeease-filters": "~2.0.0",
"postcss": "~5.0.13",
Expand All @@ -41,7 +39,6 @@
"ractive-events-keys": "~0.2.1",
"ractive-transitions-fade": "~0.3.1",
"require-globify": "~1.3.0",
"rfr": "~1.2.3",
"stylus": "~0.53.0",
"through2": "~2.0.0",
"webfontloader": "~1.6.16"
Expand Down

0 comments on commit 14769a2

Please sign in to comment.