更新时间:2026-01-08 GMT+08:00
使用Npm构建
使用Npm工具管理软件包,能完成vue和webpack的构建。
图形化构建
在配置构建步骤中,添加“Npm构建”构建步骤。
参数说明如下:
| 参数项 | 说明 |
|---|---|
| 步骤显示名称 | 构建步骤的名称,可自定义修改。 |
| 工具版本 | 根据需要选择工具版本。 |
| 命令 | 配置Npm命令,一般使用系统默认生成的命令即可。如有特殊构建要求,可以在文本域中输入自定义的构建脚本。 |
代码化构建
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | version: 2.0 # 必须是2.0 steps: BUILD: - npm: inputs: command: | export PATH=$PATH:~/.npm-global/bin npm config set registry https://repo.example.com/repository/npm/ npm config set disturl https://repo.example.com/nodejs npm config set sass_binary_site https://repo.example.com/node-sass/ npm config set phantomjs_cdnurl https://repo.example.com/phantomjs npm config set chromedriver_cdnurl https://repo.example.com/chromedriver npm config set operadriver_cdnurl https://repo.example.com/operadriver npm config set electron_mirror https://repo.example.com/electron/ npm config set python_mirror https://repo.example.com/python npm config set prefix '~/.npm-global' npm install --verbose npm run build |
| 参数名 | 参数类型 | 描述 | 是否必填 | 默认值 |
|---|---|---|---|---|
| command | string | 执行命令。 | 是 | 无 |
父主题: 配置构建步骤