Skip to content

Commit 3faa1e0

Browse files
committed
chore : copy grunt task added
1 parent 95c8ed1 commit 3faa1e0

3 files changed

Lines changed: 3874 additions & 2 deletions

File tree

Gruntfile.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,14 @@ module.exports = function(grunt) {
7272
ext:'.embed.min.css'
7373
}]
7474
}
75-
}
75+
},
76+
77+
copy:{
78+
main:{
79+
src:'src/jquery.embed.css',
80+
dest:'dist/jquery.embed.css'
81+
}
82+
}
7683

7784
});
7885

@@ -81,8 +88,9 @@ module.exports = function(grunt) {
8188
grunt.loadNpmTasks("grunt-contrib-uglify");
8289
grunt.loadNpmTasks("grunt-contrib-watch");
8390
grunt.loadNpmTasks("grunt-contrib-cssmin");
91+
grunt.loadNpmTasks("grunt-contrib-copy");
8492

85-
grunt.registerTask("build", ["concat", "uglify","cssmin"]);
93+
grunt.registerTask("build", ["concat", "uglify","cssmin","copy"]);
8694
grunt.registerTask("default", ["jshint", "build"]);
8795

8896
};

0 commit comments

Comments
 (0)