mirror of
https://github.com/zrgn/zrgn.github.io
synced 2025-06-11 22:42:32 +00:00
Adding lots of stuff to make this an actual site driven by json data
This commit is contained in:
parent
16c98e99fc
commit
3161176e3a
22 changed files with 26326 additions and 3 deletions
14
Gruntfile.js
Normal file
14
Gruntfile.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
module.exports = function (grunt) {
|
||||
grunt.initConfig({
|
||||
bower: { install: { options: {
|
||||
copy: true,
|
||||
targetDir: 'assets'
|
||||
} } },
|
||||
clean: [ 'assets', 'bower_components' ]
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('grunt-bower-task');
|
||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
||||
|
||||
grunt.registerTask('default', [ 'clean', 'bower' ]);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue