Adding bower_components to _site, they wont be gitignored
This commit is contained in:
parent
8038a31de7
commit
2824ba5aaf
274 changed files with 46334 additions and 3 deletions
45
_site/bower_components/picbookjs/Gruntfile.js
vendored
Normal file
45
_site/bower_components/picbookjs/Gruntfile.js
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*global require, module */
|
||||
/*jslint node: true*/
|
||||
'use strict';
|
||||
|
||||
module.exports = function (grunt) {
|
||||
|
||||
require('time-grunt')(grunt);
|
||||
require('load-grunt-tasks')(grunt);
|
||||
|
||||
grunt.initConfig({
|
||||
|
||||
pkg: grunt.file.readJSON('package.json'),
|
||||
|
||||
uglify: {
|
||||
options: {
|
||||
banner: '/*! <%= pkg.name %> <%= pkg.version %> Copyright (C) 2014 <%= pkg.author %>, <%= pkg.homepage %> */\n'
|
||||
},
|
||||
lib: {
|
||||
files: {
|
||||
'js/picbook.min.js': ['js/picbook.js']
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
jshint: {
|
||||
options: {
|
||||
reporter: require('jshint-stylish'),
|
||||
curly: true,
|
||||
eqeqeq: true,
|
||||
eqnull: true,
|
||||
browser: true
|
||||
},
|
||||
gruntfile: {
|
||||
src: 'Gruntfile.js'
|
||||
},
|
||||
lib: {
|
||||
src: ['js/picbook.js']
|
||||
}
|
||||
},
|
||||
|
||||
});
|
||||
|
||||
grunt.registerTask('default', ['jshint','uglify']);
|
||||
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue