@allgemein/packaging
v1.2.20
Published
Use ``` npx allg-packaging ``` to update necessary dev dependencies for predefined gulp tasks. Additionally a gulpfile.ts will be created with following content:
Downloads
151
Readme
@allgemein/packaging
Use
npx allg-packaging
to update necessary dev dependencies for predefined gulp tasks. Additionally a gulpfile.ts will be created with following content:
import * as glob from 'glob';
[
...glob.sync('node_modules/*/*/gulp/*.js'),
...glob.sync('node_modules/*/gulp/*.js'),
...glob.sync('src/gulp/*'),
...glob.sync('gulp/*'),
]
.filter(x => !/@types\//.test(x))
.map(x => require('./' + x));
You can create own gulp tasks or extend the existing in the predefined directories:
- gulp
- src/gulp
Tasks:
gulp --tasks
- package - compiles and packages all packages under packages
- publish - publishes a package to npm registry
- vpatch - Increments patch version
- vminor - Increments minor version
- vmajor - Increments major version