0.1.0 • Published 6 years ago

@new/new v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

@new/new

Run multiple scripts at a single profile.

Runs scripts with npx at a single profile. For example:

$ new @new project project-web

You can also set an alias for your preferred profile:

$ alias new="new @jamen"
$ new project project-web

Install

Note: Requires that npx be installed and available.

$ npm i -g @new/new

Usage

new <from> [...packages]

Runs the npm packages with npx -q under the hood.

$ new @new project project-web

This is equivalent to running:

$ npx -q @new/project
$ npx -q @new/project-web