Skip to content

Using Gulp, SASS and Browser-Sync for your front end web development

Notifications You must be signed in to change notification settings

maxlee/gulp-workflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gulp Workflow

Directory

yourProj/
    │
    ├── package.json                // 项目依赖定义
    ├── gulp.js                     // gulp配置任务入口
    │
    ├── src/                        // 开发目录
    │    ├── css/
    │    │    └── global.css        // 经过sass编译后的出口css文件
    │    ├── sass/                  // sass源文件
    │    ├── img/                   // 仅 Copy 不做操作
    │    ├── js/                    // 仅 Copy 不做操作
    │    └── _index.html
    │
    └── dist/                       // 发布目录,执行 `gulp build` 生成
          ├── css/
          │    └── main.css
          ├── img/
          ├── js/
          │    └── main.js
          └── index.html

About

Using Gulp, SASS and Browser-Sync for your front end web development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published