remove error generators

This commit is contained in:
Manuel Araoz 2015-01-12 21:27:33 -03:00
parent 5b193440c8
commit ffc379d8b5
1 changed files with 3 additions and 9 deletions

View File

@ -25,7 +25,6 @@ var gulp = require('gulp');
* <li> `browser:compressed` - build `bitcore-*.min.js`
* <li> `browser:maketests` - build `tests.js`, needed for testing without karma
* </ul>`
* <li> `errors` - autogenerate the `./lib/errors/index.js` file with error definitions
* <li> `lint` - run `jshint`
* <li> `coverage` - run `istanbul` with mocha to generate a report of test coverage
* <li> `coveralls` - updates coveralls info
@ -67,9 +66,9 @@ function startGulp(name) {
* testing
*/
gulp.task('test:node', ['errors'], testmocha);
gulp.task('test:node', testmocha);
gulp.task('test:node:nofail', ['errors'], function() {
gulp.task('test:node:nofail', function() {
return testmocha().on('error', ignoreerror);
});
@ -83,7 +82,7 @@ function startGulp(name) {
* file generation
*/
gulp.task('browser:uncompressed', ['errors'], shell.task([
gulp.task('browser:uncompressed', shell.task([
'./node_modules/.bin/browserify index.js --insert-global-vars=true --standalone=bitcore-' +
name + ' -o bitcore-' + name + '.js'
]));
@ -107,11 +106,6 @@ function startGulp(name) {
runsequence(['browser:compressed'], ['browser:maketests'], callback);
});
gulp.task('errors', shell.task([
'node ./lib/errors/build.js'
]));
/**
* code quality and documentation
*/