json 用于任务的NPM脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json 用于任务的NPM脚本相关的知识,希望对你有一定的参考价值。

{
  "scripts": {
    "start": "npm-run-all --parallel server watch:*",
      "watch:js": "npm run build:js -- --watch",
      "watch:static": "npm run build:static -- -w",
      "watch:css": "autoless --source-map examples www",
      "watch:dist": "npm run build:dist --- --watch",

    "build": "npm-run-all build:*",
      "build:js": "webpack",
      "build:static": "cp ./examples/static/**/* www",
      "build:css": "npm run watch:css -- --no-watch",
      "build:dist": "babel src --out-dir dist",
    
    "server": "live-server ./ --port=4240"
  }
}

以上是关于json 用于任务的NPM脚本的主要内容,如果未能解决你的问题,请参考以下文章

与 npm 和 yarn 一起使用的 package.json 脚本?

通过 npm 自动运行 gulp 任务

将参数传递给npm运行脚本

如何使用 grunt-run 执行 npm 脚本?

如何在 npm 脚本中获取包版本和日期?

package.json中的script选项作用