Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marinerer/gwf
gulp-workflow 基于Gulp前端工作流 :point_right: 合并、压缩、优化、Babel、CSS预处理、HTML模版、Lint、Mock
https://github.com/marinerer/gwf
art-template autofixture babel css gulp html preprocessor scss
Last synced: about 2 months ago
JSON representation
gulp-workflow 基于Gulp前端工作流 :point_right: 合并、压缩、优化、Babel、CSS预处理、HTML模版、Lint、Mock
- Host: GitHub
- URL: https://github.com/marinerer/gwf
- Owner: Marinerer
- License: mit
- Created: 2018-03-03T04:18:13.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T16:53:58.000Z (about 2 years ago)
- Last Synced: 2024-10-29T23:56:21.754Z (3 months ago)
- Topics: art-template, autofixture, babel, css, gulp, html, preprocessor, scss
- Language: JavaScript
- Homepage:
- Size: 1.71 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QwebFlow
Gulp开发web页面的自动化构建任务
- 本地服务器,HTTP代理,热更新,自动打开浏览器
- Mock模拟数据
- image: 压缩
- style: SCSS,自动前缀,压缩
- script: Babel,合并,压缩
- html: 模版引擎,资源文件Hash### 文件目录
参考:https://zhuanlan.zhihu.com/p/21312474
```
├─Project
│ ├─docs // 文档
│ ├─public // 静态资源
│ │ ├─vendor // 公共vendor
│ │ ├─font
│ ├─mock // 模拟数据
│ ├─dist // 生成目录
│ ├─src // 源文件
│ │ ├─html // html页面目录
│ │ ├─images // 图片资源文件
│ │ ├─styles // scss样式资源文件
│ │ │ ├─comm.scss //
│ │ │ ├─page.scss //
│ │ ├─scripts // js资源文件
│ │ │ ├─script.map.js // js文件打包地图文件
│ │ ├
│ ├─gulpfile.js // gulp配置
│ ├─package.js // package.json
│ ├─.babelrc // babel-loader 配置
│ ├─.gitignore // git 忽略项
│ ├─README.md
└─
```