怎么在npm start后,再执行build往dist文件夹内写入东西?

每次执行npm start都会清空dist文件夹,重新往dist文件夹写入。但是打包后的缺少一些外部文件的引用,需要单独执行npm build, 很麻烦,请问怎样便捷的执行这两个命令?
下面是package.json的部分配置:

    "scripts": {        "start": "better-npm-run start",        "clean": "better-npm-run clean",        "build:echarts": "better-npm-run build:echarts",
    },     "betterScripts": {         "build:echarts": {              "command": "node node_modules/echarts/build/build.js --min -i src/components/echarts/index.js -o dist/bond/static/js/echarts.min.js",              "env": {                "NODE_ENV": "production"
              }
          }
     }


凤凰求蛊
浏览 1140回答 1
1回答

人到中年有点甜

"start": "better-npm-run start \"npm build\"",
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js