Skip to content

Commit

Permalink
UPDATED: The UrbanJS Tools is upgraded to version 0.2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
balassy committed Jan 29, 2016
1 parent 5e4c492 commit 790fcfe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
8 changes: 1 addition & 7 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
'use strict';

const path = require('path');
const gulp = require('gulp');
const urbanjs = require('urbanjs-tools');

// Disable some UrbanJS features not used in this project.
urbanjs.initialize(gulp, {
eslint: {
configFile: path.join(__dirname, './.eslintrc')
},
jest: false,
jsdoc: false,
retire: false,
webpack: false
});

// Although UrbanJS provides a default 'pre-commit' task, it is overridden here to remove the 'test' subtask from it.
gulp.task('pre-commit', ['analyse']);
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"start": "cd src && node app.js",
"pre-commit": "gulp pre-commit"
},
"engines":{ "node": "5.x" },
"repository": {
"type": "git",
"url": "git+https://github.com/balassy/band-futar-tile.git"
Expand All @@ -30,6 +31,6 @@
},
"devDependencies": {
"gulp": "^3.9.0",
"urbanjs-tools": "^0.1.11"
"urbanjs-tools": "^0.2.3"
}
}
2 changes: 0 additions & 2 deletions src/next-ride/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ internals.register = function register(server, options, next) {
next();
};


internals.register.attributes = {
name: 'nextRide'
};


module.exports = internals;

0 comments on commit 790fcfe

Please sign in to comment.