File tree 1 file changed +1
-17
lines changed 1 file changed +1
-17
lines changed Original file line number Diff line number Diff line change @@ -80,21 +80,6 @@ module.exports = function(grunt) {
80
80
] ,
81
81
dest : 'app/tns_modules' ,
82
82
} ,
83
- tnsifyNpmDeps : {
84
- expand : true ,
85
- cwd : 'node_modules/' ,
86
- src : [
87
- "reflect-metadata/**/*" ,
88
- "rtts_assert/**/*" ,
89
- "zone.js/**/*" ,
90
- "rx/**/*" ,
91
- "parse5/**/*" ,
92
- "punycode/**/*" ,
93
- "querystring/**/*" ,
94
- "url/**/*" ,
95
- ] ,
96
- dest : 'app/tns_modules' ,
97
- } ,
98
83
} ,
99
84
} ) ;
100
85
@@ -159,7 +144,7 @@ module.exports = function(grunt) {
159
144
grunt . registerTask ( "prepareQuerystringPackage" , function ( ) {
160
145
//The {N} require doesn't look for index.js automatically
161
146
//so we need to declare it as main
162
- var packagePath = "app/tns_modules /querystring/package.json" ;
147
+ var packagePath = "node_modules /querystring/package.json" ;
163
148
164
149
var packageData = grunt . file . readJSON ( packagePath ) ;
165
150
packageData . main = './index.js' ;
@@ -168,7 +153,6 @@ module.exports = function(grunt) {
168
153
169
154
grunt . registerTask ( "prepareTnsModules" , [
170
155
"copy:tnsifyAngular" ,
171
- "copy:tnsifyNpmDeps" ,
172
156
"prepareQuerystringPackage" ,
173
157
] ) ;
174
158
You can’t perform that action at this time.
0 commit comments