@@ -39,39 +39,39 @@ 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 ,
56
56
removeComments : true
57
57
}
58
58
} ,
59
59
} ,
60
-
60
+
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" )
68
68
}
69
69
}
70
70
} ,
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'
@@ -106,7 +106,7 @@ module.exports = function(grunt) {
106
106
npm_test : {
107
107
command : "npm test"
108
108
}
109
-
109
+
110
110
} ,
111
111
112
112
copy : {
0 commit comments