Skip to content

Commit

Permalink
Use local file instead of CDN
Browse files Browse the repository at this point in the history
  • Loading branch information
sideroad committed Aug 6, 2014
1 parent 633873c commit 07751e7
Show file tree
Hide file tree
Showing 164 changed files with 1,138 additions and 729 deletions.
18 changes: 9 additions & 9 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ module.exports = function(grunt) {

clean: ['build', 'components'],

// Build component
componentbuild: {
concat: {
pages: {
options: {
install: true
},
src: '.',
dest: 'build'
src: [
'jquery.min.js',
'morris-0.5.1.min.js',
'raphael-min.js'
],
dest: 'build/lib.js'
}
}

Expand All @@ -39,9 +39,9 @@ module.exports = function(grunt) {
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-component-build');
grunt.loadNpmTasks('grunt-contrib-concat');

// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'clean', 'componentbuild']);
grunt.registerTask('default', ['jshint', 'clean', 'concat']);

};
3 changes: 3 additions & 0 deletions build/build.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 07751e7

Please sign in to comment.