We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17052a5 commit 104efc6Copy full SHA for 104efc6
Gruntfile.js
@@ -87,7 +87,7 @@ module.exports = function (grunt) {
87
curly: false,
88
node: true
89
},
90
- all: ['Gruntfile.js', '*/index.js']
+ all: ['Gruntfile.js', 'src/**/*.js']
91
92
env: {
93
fast: {
@@ -276,8 +276,8 @@ module.exports = function (grunt) {
276
fs.writeFileSync(path.resolve(d), JSON.stringify(json, null, 2));
277
};
278
279
- processJson('app/templates/_package.json', dest + 'package.json');
280
- processJson('app/templates/_bower.json', dest + 'bower.json');
+ processJson('templates/app/_package.json', dest + 'package.json');
+ processJson('templates/app/_bower.json', dest + 'bower.json');
281
});
282
283
grunt.registerTask('installFixtures', 'install package and bower fixtures', function() {
0 commit comments