项目作者: TylerDelRosario

项目描述 :
A basic boilerplate I setup. It's tasked to use ES6(Babel), SASS and jsHint
高级语言: JavaScript
项目地址: git://github.com/TylerDelRosario/gulp-boilerplate.git
创建时间: 2017-12-24T18:39:02Z
项目社区:https://github.com/TylerDelRosario/gulp-boilerplate

开源协议:

下载


gulp-boilerplate

A basic boilerplate I setup. It’s tasked to use ES6(Babel), SASS, jsHint and it can optionally deploy your project to Surge.

Setting up

1: Create a new folder/directory and type git clone https://github.com/TylerDelRosario/gulp-boilerplate.git.
2: By default, deploying to surge.sh is disabled, in order to enable it, uncomment the following code:

  1. /*---You need to edit your site name before it deploys---*/
  2. // gulp.task('deploy', [], ()=>{
  3. // return surge({
  4. // project: './src',
  5. // domain: 'your-site-name-here.surge.sh'
  6. // })
  7. // });

and

  1. gulp.task('default', ['lint', 'sass', 'scripts', 'watch', /*'deploy'*/]);

Moreover, change the name of your domain and make it unique.
3:Start coding!