Skip to content

Commit

Permalink
Update dependencies and drop support for Node.js 0.12 and 0.10
Browse files Browse the repository at this point in the history
deps: gcode-parser@^1.2.0
deps: gulp-babel@^7.0.0
deps: gulp-mocha@^4.3.1
  • Loading branch information
cheton committed Sep 28, 2017
1 parent ed0c8e7 commit 6ac91a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
language: node_js
node_js:
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
after_success:
- npm run coveralls
- npm run coverage-clean
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gulp.task('pre-test', () => {

gulp.task('test', ['pre-test'], () => {
return gulp.src(['test/*.js'])
.pipe(mocha())
.pipe(mocha({ compilers: 'js:babel-core/register' }))
// Creating the reports after tests ran
.pipe(istanbul.writeReports())
// Checking coverage against minimum acceptable thresholds
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "gcode-interpreter",
"version": "1.1.1",
"version": "1.2.0",
"description": "G-code Interpreter",
"author": "Cheton Wu <[email protected]>",
"homepage": "https://github.com/cheton/gcode-interpreter",
"homepage": "https://github.com/cncjs/gcode-interpreter",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:cheton/gcode-interpreter.git"
"url": "[email protected]:cncjs/gcode-interpreter.git"
},
"engines": {
"node": ">=0.10.x"
"node": ">=4"
},
"keywords": [
"cnc",
Expand All @@ -26,7 +26,7 @@
},
"main": "lib/index.js",
"dependencies": {
"gcode-parser": "^1.1.0"
"gcode-parser": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
Expand All @@ -35,9 +35,9 @@
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel": "^7.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-mocha": "^4.3.1",
"mocha": "^3.2.0"
}
}

0 comments on commit 6ac91a9

Please sign in to comment.