Socket
Socket
Sign inDemoInstall

@valtech-commerce/manager

Package Overview
Dependencies
926
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @valtech-commerce/manager

Manager for Node.js projects


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 09 Feb 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc