Add gulpfile file template
This commit is contained in:
parent
1f50211e5e
commit
7836698262
2 changed files with 5 additions and 0 deletions
|
@ -48,6 +48,7 @@
|
|||
("/package\\.json$" "__package.json" json-mode)
|
||||
("/bower\\.json$" "__bower.json" json-mode)
|
||||
("\\.\\(json\\|jshintrc\\)$" "__" json-mode)
|
||||
("/gulpfile\\.js$" "__gulpfile.js" js-mode)
|
||||
;; Lua
|
||||
("/main\\.lua$" "__main.lua" love-mode)
|
||||
("/conf\\.lua$" "__conf.lua" love-mode)
|
||||
|
|
4
private/templates/js-mode/__gulpfile.js
Normal file
4
private/templates/js-mode/__gulpfile.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
const gulp = require('gulp');
|
||||
|
||||
// Default task
|
||||
gulp.task('default', [$1]);
|
Loading…
Add table
Add a link
Reference in a new issue