@@ -39,17 +39,17 @@ module.exports = function(grunt) {
39
39
} ,
40
40
41
41
devlib : {
42
- src : [ "lib/**/*.ts" , "!lib/common/node_modules/**/*.ts" ] ,
42
+ src : [ "lib/**/*.ts" , "!lib/common/node_modules/**/*.ts" , "!lib/common/messages/**/*.ts" ] ,
43
43
reference : "lib/.d.ts"
44
44
} ,
45
45
46
46
devall : {
47
- src : [ "lib/**/*.ts" , "test/**/*.ts" , "!lib/common/node_modules/**/*.ts" , "lib/common/test/unit-tests/**/*.ts" , "definitions/**/*.ts" , "!lib/common/test/.d.ts" ] ,
47
+ src : [ "lib/**/*.ts" , "test/**/*.ts" , "!lib/common/node_modules/**/*.ts" , "!lib/common/messages/**/*.ts" , " lib/common/test/unit-tests/**/*.ts", "definitions/**/*.ts" , "!lib/common/test/.d.ts" ] ,
48
48
reference : "lib/.d.ts"
49
49
} ,
50
50
51
51
release_build : {
52
- src : [ "lib/**/*.ts" , "test/**/*.ts" , "!lib/common/node_modules/**/*.ts" ] ,
52
+ src : [ "lib/**/*.ts" , "test/**/*.ts" , "!lib/common/node_modules/**/*.ts" , "!lib/common/messages/**/*.ts" ] ,
53
53
reference : "lib/.d.ts" ,
54
54
options : {
55
55
sourceMap : false ,
@@ -61,7 +61,7 @@ module.exports = function(grunt) {
61
61
tslint : {
62
62
build : {
63
63
files : {
64
- src : [ "lib/**/*.ts" , "test/**/*.ts" , "!lib/common/node_modules/**/*.ts" , "lib/common/test/unit-tests/**/*.ts" , "definitions/**/*.ts" , "!**/*.d.ts" ]
64
+ src : [ "lib/**/*.ts" , "test/**/*.ts" , "!lib/common/node_modules/**/*.ts" , "!lib/common/messages/**/*.ts" , " lib/common/test/unit-tests/**/*.ts", "definitions/**/*.ts" , "!**/*.d.ts" ]
65
65
} ,
66
66
options : {
67
67
configuration : grunt . file . readJSON ( "./tslint.json" )
@@ -71,7 +71,7 @@ module.exports = function(grunt) {
71
71
72
72
watch : {
73
73
devall : {
74
- files : [ "lib/**/*.ts" , 'test/**/*.ts' , "!lib/common/node_modules/**/*.ts" ] ,
74
+ files : [ "lib/**/*.ts" , 'test/**/*.ts' , "!lib/common/node_modules/**/*.ts" , "!lib/common/messages/**/*.ts" ] ,
75
75
tasks : [
76
76
'ts:devall' ,
77
77
'shell:npm_test'
0 commit comments