Skip to content

Commit ef2fd39

Browse files
committed
initial commit
0 parents  commit ef2fd39

11 files changed

+30624
-0
lines changed

Gruntfile.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = (grunt) => {
2+
3+
// Configuration
4+
grunt.initConfig({
5+
// pass in options to plugins, references to files etc..
6+
concat: {
7+
js: {
8+
// src: ['js/*.js']
9+
src: ['js/jquery-1.12.4.js', 'js/rslides.js', 'js/scripts.js'],
10+
dest: 'dist/scripts.js'
11+
},
12+
css: {
13+
src: ['css/bootstrap.css', 'css/reset.css'],
14+
dest: 'dist/styles.css'
15+
}
16+
}
17+
});
18+
19+
// Load plugins
20+
grunt.loadNpmTasks('grunt-contrib-concat');
21+
22+
// Register tasks
23+
grunt.registerTask('concat-js', ['concat:js']);
24+
grunt.registerTask('concat-css', ['concat:css']);
25+
26+
}

0 commit comments

Comments
 (0)