Skip to content

Commit 104efc6

Browse files
committed
fix(gen:grunt): update paths
1 parent 17052a5 commit 104efc6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Gruntfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ module.exports = function (grunt) {
8787
curly: false,
8888
node: true
8989
},
90-
all: ['Gruntfile.js', '*/index.js']
90+
all: ['Gruntfile.js', 'src/**/*.js']
9191
},
9292
env: {
9393
fast: {
@@ -276,8 +276,8 @@ module.exports = function (grunt) {
276276
fs.writeFileSync(path.resolve(d), JSON.stringify(json, null, 2));
277277
};
278278

279-
processJson('app/templates/_package.json', dest + 'package.json');
280-
processJson('app/templates/_bower.json', dest + 'bower.json');
279+
processJson('templates/app/_package.json', dest + 'package.json');
280+
processJson('templates/app/_bower.json', dest + 'bower.json');
281281
});
282282

283283
grunt.registerTask('installFixtures', 'install package and bower fixtures', function() {

0 commit comments

Comments
 (0)