Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mario34/gulp-template

🛠 一个gulp的开发环境
https://github.com/mario34/gulp-template

Last synced: 28 days ago
JSON representation

🛠 一个gulp的开发环境

Awesome Lists containing this project

README

        

## gulp 开发环境搭建

**注意** `gulp4`并不向下兼容老版本,但大部分API仍然可以使用

- sass自动编译
- 自动压缩css,js,html,image
- 热重载开发服务器
- babel语法转换

### 开始

```bash
# 安装依赖
npm install

# 运行gulp

# 开发模式(修改文件,热重载服务器)
npm run dev

# 打包产品代码(压缩JS,HTML,CSS,image)

npm run build

# 打包产品代码 & 开启dist服务

npm run product
```