Browse Source

Removing task from other build sources

Gabriel Nepomuceno 9 năm trước cách đây
mục cha
commit
cbf0d571f5
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      tasks/build_task.js
  2. 1 1
      tasks/options/watch.js

+ 1 - 1
tasks/build_task.js

@@ -10,7 +10,7 @@ module.exports = function(grunt) {
     'clean:release',
     'copy:node_modules',
     'copy:public_to_gen',
-    'typescript:build',
+    'exec:tscompile',
     'karma:test',
     'phantomjs',
     'css',

+ 1 - 1
tasks/options/watch.js

@@ -64,7 +64,7 @@ module.exports = function(config, grunt) {
           grunt.config('typescript.build.src', filepath);
           grunt.config('tslint.source.files.src', filepath);
 
-          grunt.task.run('typescript:build');
+          grunt.task.run('exec:tscompile');
           grunt.task.run('exec:tslint');
         }