Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "pleasejs", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"homepage": "https://github.com/Fooidge/PleaseJS", | ||
@@ -5,0 +5,0 @@ "authors": [ |
var gulp = require('gulp'), | ||
jshint = require('gulp-jshint'), | ||
uglify = require('gulp-uglify'), | ||
watch = require('gulp-watch'); | ||
watch = require('gulp-watch'), | ||
bump = require('gulp-bump'); | ||
@@ -18,2 +19,17 @@ gulp.task('uglify', function(){ | ||
}); | ||
gulp.task('bump-major', function(){ | ||
gulp.src(['./bower.json', './component.json', './package.json']) | ||
.pipe(bump({type:'major'})) | ||
.pipe(gulp.dest('./')); | ||
}); | ||
gulp.task('bump-minor', function(){ | ||
gulp.src(['./bower.json', './component.json', './package.json']) | ||
.pipe(bump({type:'minor'})) | ||
.pipe(gulp.dest('./')); | ||
}); | ||
gulp.task('bump-patch', function(){ | ||
gulp.src(['./bower.json', './component.json', './package.json']) | ||
.pipe(bump({type:'patch'})) | ||
.pipe(gulp.dest('./')); | ||
}); | ||
/* | ||
@@ -20,0 +36,0 @@ gulp.task('watch', function(){ |
{ | ||
"name": "pleasejs", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "JS library to generate random pleasing colors/color schemes", | ||
"main": ".dist/Please.js", | ||
"main": "./dist/Please.js", | ||
"scripts": { | ||
@@ -26,2 +26,3 @@ "test": "Please.make_color();" | ||
"gulp": "^3.8.9", | ||
"gulp-bump": "^0.1.11", | ||
"gulp-jshint": "^1.7.1", | ||
@@ -28,0 +29,0 @@ "gulp-uglify": "^0.3.2", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
40648
716
0
6