A gulp plugin to unify the package.json version notation.
package.jsonのバージョン表記を統一化するgulpのプラグインです。
^1.2.3 → 1.x.x
^0.1.2 → 0.1.x
^0.0.1 → 0.0.1
npm i gulp-package-version-format
yarn add gulp-package-version-format
gulpfile.js
const versionFormat = require('gulp-package-version-format');
gulp.task('versionFormat', () => {
return gulp.src('./package.json')
.pipe(versionFormat())
.pipe(gulp.dest('./'));
});
versionFormat({
'wildcard': '*'
})
option | default | description |
---|---|---|
wildcard | x | Specifies the wildcard to use. x or X or * |
gulp versionFormat