@malagu/component
v2.60.3
Published
CLI for malagu component.
Readme
CLI for malagu packages.
malagu-component is a command line tool to run shared npm scripts in malagu packages.
For instance, if you want add a new hello script that prints Hello World:
- add a new script to package.json with the
ext:prefix.
{
"name": "@malagu/component",
"scripts": {
"ext:hello": "echo 'Hello World'"
}
}- install
malagu-componentin your package (the actual version can be different)
{
"name": "@malagu/mycomponent",
"devDependencies": {
"@malagu/component": "^0.1.1"
}
}- you should be able to call
helloscript in the context of your package:
npx malagu-component hello- and from npm scripts of your package:
{
"name": "@malagu/mycomponent",
"scripts": {
"hello": "malagu-component hello"
}
}