No need for npm prepublish now that we have the gulp publish task.

This commit is contained in:
Jürg Lehni 2016-07-09 23:49:11 +02:00
parent a14e1e4c97
commit 4df2dfb343
3 changed files with 2 additions and 3 deletions

View file

@ -31,7 +31,7 @@ gulp.task('publish', function() {
});
gulp.task('publish:version', function() {
// reset the version value since we're executing this on the develop branch,
// Reset the version value since we're executing this on the develop branch,
// but we don't wan the published version suffixed with '-develop'.
options.resetVersion();
return gulp.src([ 'package.json' ])

View file

@ -11,8 +11,8 @@
*/
var gulp = require('gulp'),
qunits = require('gulp-qunits'),
gutil = require('gulp-util'),
qunits = require('gulp-qunits'),
webserver = require('gulp-webserver');
gulp.task('test', ['test:phantom', 'test:node']);

View file

@ -15,7 +15,6 @@
],
"main": "dist/paper-full.js",
"scripts": {
"prepublish": "gulp build minify docs",
"precommit": "gulp jshint",
"prepush": "gulp test",
"build": "gulp build",