Skip to content

Commit 100fa1e

Browse files
author
benholloway
committed
fixed external tool gating, changed execution order to match help docs
1 parent 1fe3dbb commit 100fa1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/webstorm.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ gulp.task('webstorm', function (done) {
134134
var taskList = [
135135
cliArgs.subdir && 'webstorm:subdir',
136136
cliArgs.project && 'webstorm:project',
137-
cliArgs.templates && 'webstorm:templates',
138-
cliArgs.tools && 'webstorm:tools',
137+
cliArgs.external && 'webstorm:externaltools',
139138
cliArgs.codestyle && 'webstorm:codestyle',
139+
cliArgs.templates && 'webstorm:templates',
140140
cliArgs.launch && 'webstorm:launch'
141141
].filter(Boolean).concat(done);
142142
runSequence.apply(runSequence, taskList);
@@ -206,7 +206,7 @@ gulp.task('webstorm:templates', function () {
206206
ideTemplate.webStorm.copyFileTemplates(path.join(TEMPLATE_PATH, 'fileTemplates'));
207207
});
208208

209-
gulp.task('webstorm:tools', function () {
209+
gulp.task('webstorm:externaltools', function () {
210210
ideTemplate.webStorm.createExternalTool({
211211
name : 'Angularity',
212212
tools: ['test', 'watch', 'watch --unminified', 'build', 'build --unminified', 'release']

0 commit comments

Comments
 (0)