Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 0ca4910

Browse files
committed
fixes #150 grunt build deletes index.js
1 parent 8e3daec commit 0ca4910

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = function(grunt) {
3838
browsers: [grunt.option('browser') || 'Chrome']
3939
}
4040
},
41-
clean: [pkg.main],
41+
clean: [],
4242
concat: {
4343
options: {
4444
stripBanners: true,
@@ -74,6 +74,6 @@ module.exports = function(grunt) {
7474

7575
grunt.registerTask('test', ['karma:unit']);
7676
grunt.registerTask('test-server', ['karma:server']);
77-
grunt.registerTask('build', ['clean', 'concat:js', 'uglify']);
77+
grunt.registerTask('build', ['concat:js', 'uglify']);
7878
grunt.registerTask('sample', ['connect']);
7979
};

0 commit comments

Comments
 (0)