Comparing version 0.0.12 to 1.0.0
/** | ||
* build-url - A small library that builds a URL given it's components | ||
* @version v0.0.11 | ||
* @version v1.0.0 | ||
* @link https://github.com/steverydz/build-url#readme | ||
@@ -5,0 +5,0 @@ * @license MIT |
/** | ||
* build-url - A small library that builds a URL given it's components | ||
* @version v0.0.11 | ||
* @version v1.0.0 | ||
* @link https://github.com/steverydz/build-url#readme | ||
@@ -5,0 +5,0 @@ * @license MIT |
const gulp = require('gulp'); | ||
const uglify = require('gulp-uglify'); | ||
const rename = require('gulp-rename'); | ||
const bump = require('gulp-bump'); | ||
const header = require('gulp-header'); | ||
@@ -34,24 +33,3 @@ const pkg = require('./package.json'); | ||
gulp.task('bump-patch', () => { | ||
gulp.src('./package.json') | ||
.pipe(bump({ type: 'patch' })) | ||
.pipe(gulp.dest('./')); | ||
}); | ||
gulp.task('bump-minor', () => { | ||
gulp.src('./package.json') | ||
.pipe(bump({ type: 'minor' })) | ||
.pipe(gulp.dest('./')); | ||
}); | ||
gulp.task('bump-major', () => { | ||
gulp.src('./package.json') | ||
.pipe(bump({ type: 'major' })) | ||
.pipe(gulp.dest('./')); | ||
}); | ||
gulp.task('build', ['uglify', 'copy']); | ||
gulp.task('release-patch', ['build', 'bump-patch']); | ||
gulp.task('release-minor', ['build', 'bump-minor']); | ||
gulp.task('release-major', ['build', 'bump-major']); | ||
gulp.task('default', ['build', 'watch']); |
{ | ||
"name": "build-url", | ||
"version": "0.0.12", | ||
"version": "1.0.0", | ||
"description": "A small library that builds a URL given it's components", | ||
@@ -16,4 +16,15 @@ "main": "./dist/build-url.js", | ||
"uri", | ||
"url builder", | ||
"uri builder" | ||
"builder", | ||
"build", | ||
"concat", | ||
"concatenate", | ||
"append", | ||
"path", | ||
"hash", | ||
"query", | ||
"string", | ||
"querystring", | ||
"parameters", | ||
"params", | ||
"queryparams" | ||
], | ||
@@ -28,3 +39,2 @@ "author": "Steve Rydz", | ||
"gulp": "3.9.0", | ||
"gulp-bump": "1.0.0", | ||
"gulp-header": "1.7.1", | ||
@@ -31,0 +41,0 @@ "gulp-rename": "1.2.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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
5
1
8970
195