Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 578 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 578 Bytes

npm run

A wercker step to run scripts from package.json with npm run.

wercker status

Options

  • script (required) Name of the script definition in package.json.

Example

Define scripts in package.json.

{
  "name": "awesome-node-app",
  "scripts": {
    "build": "gulp build"
  }
}

Add npm run to your build steps.

build:
    steps:
        - maxon/npm-run:
            script: build