@valtech-commerce/manager
v3.0.0-rc.1
Published
Manager for Node.js projects
Downloads
2
Readme
@valtech-commerce/manager
Manager for single/multi packages JavaScript projects
Install
$ npm install @valtech-commerce/manager
Usage
In your ./package.json
file add
{
"scripts": {
"manager:outdated": "node manager --task=outdated",
"manager:build": "node manager --task=build",
"manager:watch": "node manager --task=watch",
"manager:fix": "node manager --task=fix",
"manager:documentation": "node manager --task=documentation",
"manager:prepare": "node manager --task=prepare",
"manager:version": "node manager --task=version --release=$npm_config_release",
"manager:rebuild": "node manager --task=rebuild"
}
}
In a ./manager.js
file
import { manager } from "@valtech-commerce/manager";
manager.init({
repositoryType: "single-package",
dist: {
node: {},
browser: [
{
type: "module",
},
],
},
});
or
import { manager } from "@valtech-commerce/manager";
manager.init({
repositoryType: "multi-package",
dist: {
browser: [
{
type: "script",
name: "my-super-package",
},
],
},
});
Documentation
See the full documentation for an in-depth look.
See the Changelog to see what has changed.
Contribute
See the Contributing Guidelines for ways to get started.
See the Support Guide for ways to get help.
See the Security Policy for sharing vulnerability reports.
This project has a Code of Conduct. By interacting with this repository, organization, or community you agree to abide by its terms.