We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39ba6d commit bf0c7c1Copy full SHA for bf0c7c1
Gruntfile.js
@@ -17,11 +17,20 @@ module.exports = function(grunt) {
17
watch: {
18
files: ['components/*.js', '*.pde'],
19
tasks: 'default'
20
+ },
21
+ copy: {
22
+ main: {
23
+ cwd: 'web/',
24
+ expand: true,
25
+ src: ['**'],
26
+ dest: 'static/',
27
28
}
29
});
30
- grunt.registerTask('default', ['concat']);
31
+ grunt.registerTask('default', ['concat', 'copy']);
32
33
grunt.loadNpmTasks('grunt-contrib-watch');
34
grunt.loadNpmTasks('grunt-contrib-concat');
35
+ grunt.loadNpmTasks('grunt-contrib-copy');
36
};
0 commit comments