Add bower_components as it contains the resources used by github pages.

This commit is contained in:
Arpad Csanyi
2016-01-14 00:43:09 +01:00
parent 7b7b550e1a
commit bfffb12f8f
704 changed files with 118925 additions and 0 deletions

15
bower_components/Split.js/Gruntfile.js vendored Normal file
View File

@@ -0,0 +1,15 @@
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jasmine: {
test: {
src: 'split.js',
options: {
specs: ['test/split.spec.js']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jasmine');
};