githubcss
簡單的工做流 基於Gulp 利用 gulp-preprocess 進行多環境(api域名)開發、打包html
sass轉css css&js&html壓縮java
最近苦於搬磚,咱們有三個開發環境,不一樣的環境的api的域名不同,像我這麼懶的人只能一鍵打包,webpack不太適用,沒辦法,只能寫一個基於gulp的,適合本身用的工做流了,哎~~~(一聲長嘆)webpack
傳送門git
<!-- @if HOST_ENV='test' --> <script charset="UTF-8"> window._hostname = 'http://testhost' </script> <!-- @endif--> <!-- @if HOST_ENV='qa' --> <script charset="UTF-8"> window._hostname = 'https://qahost' </script> <!-- @endif-->
test環境下轉換效果github
<script charset="UTF-8"> window._hostname = 'http://testhost' </script>
var host // @if HOST_ENV='test' host = 'testhost' // @endif // @if HOST_ENV='qa' host = 'qahost' // @endif
test環境下轉換效果web
var host host = 'testhost'
## 開發啓動 默認test環境,(gulpfile.js裏面配置) npm run dev ## 調試指定的域名,可選host test qa pe (gulpfile.js裏面配置) npm run dev-host test
## 打包所有 npm run build-all ## 打單個環境的包, 可選host test qa pe (gulpfile.js裏面配置) npm run build test
dev 源代碼路徑,dist 開發調試的路徑 , output 打包路徑npm
├── README.md ├── dev │ ├── example.js │ └── index.html ├── dist │ ├── example.js │ └── index.html ├── gulpfile.js ├── output │ ├── pe │ │ ├── example.js │ │ └── index.html │ ├── qa │ │ ├── example.js │ │ └── index.html │ └── test │ ├── example.js │ └── index.html ├── package.json └── tree.txt