diff --git a/gulpfile.js b/gulpfile.js index 863bcfbf5..8994b78a3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -33,7 +33,7 @@ gulp.task('lint', function() { gulp.task('plugin:create', function(){ if(flags.n && flags.n !== ''){ - var src = flags.m?'./TEMPLATE-MIN':'./TEMPLATE'; + var src = flags.m?'./scripts/templates/wrap-min.tmpl':'./scripts/templates/wrap.tmpl'; return gulp.src(src) .pipe(replace('PluginName', flags.n)) .pipe(rename(decamelize(flags.n, '-') + '.ts')) diff --git a/TEMPLATE-MIN b/scripts/templates/wrap-min.tmpl similarity index 100% rename from TEMPLATE-MIN rename to scripts/templates/wrap-min.tmpl diff --git a/TEMPLATE b/scripts/templates/wrap.tmpl similarity index 100% rename from TEMPLATE rename to scripts/templates/wrap.tmpl