Skip to content

Commit

Permalink
chore(bump): deps which includes typescript v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jyounce committed Feb 25, 2017
1 parent 73fcdad commit 37d97e8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -53,20 +53,20 @@
"babel-preset-es2015": "6.22.0",
"bluebird": "3.4.7",
"bower": "1.8.0",
"browser-sync": "2.18.7",
"browserify": "14.0.0",
"browser-sync": "2.18.8",
"browserify": "14.1.0",
"coffee-script": "1.10.0",
"colors": "1.1.2",
"commander": "2.9.0",
"cson": "4.0.0",
"deepmerge": "1.3.2",
"del": "2.2.2",
"delete-empty": "0.1.3",
"delete-empty": "1.0.0",
"event-stream": "3.3.4",
"find-port": "1.0.1",
"fs-extra": "2.0.0",
"fstream": "1.0.10",
"glob-stream": "5.3.5",
"glob-stream": "6.0.0",
"gulp": "3.9.1",
"gulp-angular-templatecache": "1.9.1",
"gulp-babel": "6.1.2",
Expand Down Expand Up @@ -97,7 +97,7 @@
"jasmine-core": "2.5.2",
"jasmine-expect": "3.6.0",
"jasmine-terminal-reporter": "1.0.3",
"karma": "1.4.1",
"karma": "1.5.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-matchers": "3.6.0",
"karma-chrome-launcher": "2.0.0",
Expand All @@ -107,14 +107,14 @@
"karma-safari-launcher": "1.0.0",
"open": "0.0.5",
"phantomjs-prebuilt": "2.1.14",
"postcss": "5.2.12",
"postcss": "5.2.15",
"postcss-import": "7.1.3",
"q": "1.4.1",
"sha1": "1.1.1",
"tar": "2.2.1",
"through2": "2.0.3",
"tsify": "3.0.1",
"typescript": "2.1.6",
"typescript": "2.2.1",
"vinyl-source-stream": "1.1.0",
"watchify": "3.9.0"
},
Expand Down
4 changes: 2 additions & 2 deletions src/tasks/build/build-files.coffee
Expand Up @@ -79,11 +79,11 @@ module.exports = (config, gulp) ->
files = []
defer = q.defer()
opts = allowEmpty: true
stream = gs.create glob, opts
stream = gs glob, opts
stream.on 'data', (file) ->
_path = path.normalize file.path
_path = pathHelp.format _path
files.push pathHelp.format _path
files.push _path
.on 'end', ->
addData type, files
defer.resolve()
Expand Down
4 changes: 3 additions & 1 deletion src/tasks/clean/cleanup-client.coffee
Expand Up @@ -70,7 +70,9 @@ module.exports = (config, gulp) ->

delEmptyDirsTask = (msg) ->
defer = q.defer()
deleteEmpty config.dist.app.client.dir, (err, deleted) ->
src = config.dist.app.client.dir
opts = silent: true
deleteEmpty src, opts, (err, deleted) ->
# log.task msg, 'minor' if msg
defer.resolve()
defer.promise
Expand Down

0 comments on commit 37d97e8

Please sign in to comment.