可能年纪大了,对于新东西的学习和接收有点慢,花了差不多一周的时间,终于把jenkins配置好了,可以自动打包,与手动打出来的一样,以后就解放双手了。
#!/bin/bash
npm cache clean -f
npm -v
node -v
npm install npm@6.14.4 -g
npm -v
SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ npm install node-sass
npm uninstall node-sass
npm i -S sass
npm config set registry https://registry.npm.taobao.org
npm uninstall -g cnpm
npm install cnpm@6.2.0 -g --registry=https://registry.npm.taobao.org
cnpm -v
cnpm install
node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng build --configuration=production
rm -rf dist.tar.gz # 删除上一个\已存在的dist压缩包
tar -zcvf dist.tar.gz dist # 将新打的dist包进行压缩