Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Monorepo packages development-production cli
Yuppy allows you do describe multiple packages in config file and run command for each of them.
using npm
npm install yuppy --save-dev
using Yarn
yarn add yuppy --dev
yuppy.config.js
(or yuppy.config.json) file under your rootconst node = 'node';
const webpack = `${node} ./node_modules/webpack-cli/bin/webpack.js`
module.exports = {
'packages': [
{
'name': 'Angular app',
'scripts': {
'start': `${webpack} --watch --config ./config/angular.webpack.js`,
'build': `${webpack} --config ./config/angular.webpack.js`,
'echo': 'echo Hello Angular',
'err': 'Angular error please'
}
},
{
'name': 'Vue app',
'scripts': {
'start': `${webpack} --watch --config ./config/vue.webpack.js`,
'build': `${webpack} --config ./config/vue.webpack.js`,
'echo': 'echo Hello Vue',
'err': 'Vue error please'
}
},
{
'name': 'React app',
'scripts': {
'start': `${webpack} --watch --config ./config/react.webpack.js`,
'build': `${webpack} --config ./config/react.webpack.js`,
'echo': 'echo Hello React',
'err': 'React error please'
}
}
]
}
"scripts": {
"start": "./node_modules/yuppy/bin/yuppy start"
},
yuppy -h
to see available commandsUsage: yuppy [options] [command]
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
start [options] Select and run package script
run [options] <script> Run given script(s) for all project
yuppy start -h
to see start command optionsUsage: start [options]
Select and run package script
Options:
-c, --config [config] Optional yuppy config file path
-h, --help output usage information
yuppy run -h
to see run command optionsUsage: run [options] <script>
Run given script(s) for all project
Options:
-c, --config [config] Optional yuppy config file path
-s, --stop-on-fail Stop on first failed script
-S, --skip-unchanged Skip script when project is not changed
-p, --parallel Run in parallel
-P, --max-parallel-scripts [maxParallelScripts] Set max parallel scripts to run at the same time
-h, --help
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
This project is licensed under the MIT License - see the LICENSE.md file for details
0.6.1 (2019-03-04)
<a name="0.5.0"></a>
FAQs
Monorepo packages development-production cli
We found that yuppy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.