Skip to content

Commit

Permalink
fix(gen:grunt): update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 committed Apr 24, 2016
1 parent 17052a5 commit 104efc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = function (grunt) {
curly: false,
node: true
},
all: ['Gruntfile.js', '*/index.js']
all: ['Gruntfile.js', 'src/**/*.js']
},
env: {
fast: {
Expand Down Expand Up @@ -276,8 +276,8 @@ module.exports = function (grunt) {
fs.writeFileSync(path.resolve(d), JSON.stringify(json, null, 2));
};

processJson('app/templates/_package.json', dest + 'package.json');
processJson('app/templates/_bower.json', dest + 'bower.json');
processJson('templates/app/_package.json', dest + 'package.json');
processJson('templates/app/_bower.json', dest + 'bower.json');
});

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

0 comments on commit 104efc6

Please sign in to comment.