@spring-global/mseries-bootstrap
v0.0.28
Published
mseries-bootstrap provides a quick way to setup the development environment for both product and project react app.
Downloads
15
Keywords
Readme
mseries-bootstrap
mseries-bootstrap provides a quick way to setup the development environment for both product and project react app.
Installation
$ npm i @spring-global/mseries-bootstrap -g --save-dev
Configuring for development in a product branch:
$ npx mseries-bootstrap
Configuring for development in a project branch:
Adjust the property "product.version" or "product.feature" in the extension package in "...\mseries-bootstrap\extension-packages\extension-package.json" and run:
$ npx mseries-bootstrap
Examples
Using the latest product version:
{
"name": "custom_app",
"version": "0.0.1",
"product": {
"version": "@latest"
}
}
Using a specific product version:
{
"name": "custom_app",
"version": "0.0.1",
"product": {
"version": "7.84.0"
}
}
Using an unreleased "feature" version:
{
"name": "custom_app",
"version": "0.0.1",
"product": {
"feature": "FeatureName",
}
}
Remarks
- If both "version" and "feature" are specified, the "feature" version will be used.
- If none "version" or "feature" are specified, the latest product version will be used.