Socket
Book a DemoInstallSign in
Socket

@valtech-commerce/manager

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@valtech-commerce/manager

Manager for Node.js projects

latest
Source
npmnpm
Version
3.0.0-rc.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

@valtech-commerce/manager

npm npm dependencies Tests npms License: MIT

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.

License

MIT © Valtech Canada inc.

Keywords

babel

FAQs

Package last updated on 09 Feb 2023

Did you know?

Socket

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.

Install

Related posts