美文网首页
npm scripts 中的参数

npm scripts 中的参数

作者: 回调的幸福时光 | 来源:发表于2019-04-12 14:47 被阅读0次

通过 process.env.npm_config_argus 获取 npm run xxx --argus 中的参数 argus

npm-config.png

举例:vue-cli 集成可视化分析工具 webpack-bundle-analyzer

在 vue-cli 创建的项目中,如果执行命令 npm run build --report ,那么参数 --report 将转化成 process.env.npm_config_report = true

// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report

参考

https://docs.npmjs.com/misc/config
https://github.com/thecatshidog/blog/issues/27

相关文章

  • npm scripts 中的参数

    通过 process.env.npm_config_argus 获取 npm run xxx --argus 中的...

  • vue npm run build报错

    1、运行npm run build,报错如下: 原因:后来发现package.json中scripts参数为: 说...

  • 前端环境搭建(react)

    1.执行 npm init 生成package.json文件,并将scripts中修改为: "scripts": ...

  • npm、npm scripts

    1、 如何全局安装一个 node 应用? 上述命令执行之后将会在当前的目录下创建一个 node_modules 的...

  • npm scripts

    在一定程度是,你无论如何都要使用npm,而同时npm提供了脚本功能,所以你在命令行中使用的命令都可以在 npm S...

  • npm scripts

    待续

  • npm scripts

    就是执行shell命令,有些场景可以适合用这个辅助功能 1、项目的相关脚本,可以集中在一个地方。2、不同项目的脚本...

  • WebStorm运行React

    在Edit Configurations中 添加npm Command: run Scripts:start

  • 使用 npm 的几个技巧

    npm run env 可以获取 npm 中的所有变量,这些变量可以直接在配置文件的 scripts 中通过 $...

  • NPM脚本(npm scripts)

    npm 可以通过输入 npm -v 来测试是否成功安装。npm install npm ...

网友评论

      本文标题:npm scripts 中的参数

      本文链接:https://www.haomeiwen.com/subject/tmscwqtx.html