Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Remove browserify and jsdoc (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
corbinu authored and JamesHenry committed Feb 10, 2017
1 parent cf38df0 commit eb5c9db
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
10 changes: 0 additions & 10 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ var gulp = require('gulp'),
sourcemaps = require('gulp-sourcemaps'),
plumber = require('gulp-plumber'),
source = require('vinyl-source-stream'),
browserify = require('browserify'),
lazypipe = require('lazypipe'),
eslint = require('gulp-eslint'),
fs = require('fs');
Expand Down Expand Up @@ -85,15 +84,6 @@ gulp.task('build', function () {
return gulp.src(SOURCE).pipe(build());
});

gulp.task('browserify', [ 'build' ], function () {
return browserify({
entries: [ './lib/index.js' ]
})
.bundle()
.pipe(source('bundle.js'))
.pipe(gulp.dest('build'))
});

gulp.task('test', [ 'lint', 'build' ], function () {
return gulp.src(TEST)
.pipe(mocha({
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"test": "gulp travis",
"unit-test": "gulp test",
"lint": "gulp lint",
"jsdoc": "jsdoc src/*.js README.md",
"release": "eslint-release",
"ci-release": "eslint-ci-release",
"gh-release": "eslint-gh-release",
Expand All @@ -33,7 +32,6 @@
"babel": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"browserify": "^13.0.0",
"chai": "^3.4.1",
"eslint-release": "^0.10.1",
"espree": "^3.1.1",
Expand All @@ -49,7 +47,6 @@
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-tag-version": "^1.3.0",
"jsdoc": "^3.4.0",
"lazypipe": "^1.0.1",
"vinyl-source-stream": "^1.1.0"
}
Expand Down

0 comments on commit eb5c9db

Please sign in to comment.