Skip to content

Commit

Permalink
upgrade devDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed Apr 1, 2017
1 parent 4135ab7 commit dd7fd1e
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 135 deletions.
2 changes: 1 addition & 1 deletion build/js/quadtree.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/js/quadtree.min.js.map

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,22 @@ gulp.task 'build', () ->
.pipe coffee bare: true
.pipe sourcemaps.write '.'
.pipe gulp.dest('build/js')
.pipe(filter('**/*.js'))
.pipe filter('**/*.js')
.pipe uglify()
.pipe rename extname: '.min.js'
.pipe sourcemaps.write '.'
.pipe gulp.dest 'build/js'


gulp.task 'test', ['build'], () ->
gulp.task 'pre-test', ['build'], () ->
gulp.src 'build/js/quadtree.js'
.pipe istanbul()
.pipe istanbul.hookRequire()
.on 'finish', ->
gulp.src paths.test, read: false
.pipe mocha reporter: 'nyan'
.pipe istanbul.writeReports()

gulp.task 'test', ['pre-test'], () ->
gulp.src paths.test, read: false
.pipe mocha reporter: 'nyan'
.pipe istanbul.writeReports()

gulp.task 'perf', ['build'], () ->
gulp.src paths.perf, read: false
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
"main": "./build/js/quadtree.min.js",
"types": "./typings/quadtree.d.ts",
"devDependencies": {
"coffee-coverage": "^1.0.1",
"coffee-coverage": "^2.0.1",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.9",
"coveralls": "^2.13.0",
"del": "^2.0.2",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.1",
"gulp-docco": "0.0.4",
"gulp-filter": "^5.0.0",
"gulp-istanbul": "^0.10.4",
"gulp-istanbul": "^1.1.1",
"gulp-minify-html": "^1.0.4",
"gulp-mocha": "^2.1.3",
"gulp-mocha": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.4.1",
"gulp-sourcemaps": "^2.5.0",
"gulp-uglify": "^2.1.2",
"istanbul": "^0.4.3",
"mocha": "*",
"traceur": "0.0.108"
"traceur": "^0.0.111"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register -R nyan test/test.coffee && istanbul report text-summary lcov"
Expand Down
Loading

0 comments on commit dd7fd1e

Please sign in to comment.