forked from kristoferjoseph/flexboxgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9838c8
commit 94c309e
Showing
12 changed files
with
286 additions
and
976 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,129 @@ | ||
/*global module:false*/ | ||
var reworkCustomMedia = require('rework-custom-media'); | ||
|
||
module.exports = function(grunt) { | ||
|
||
grunt.initConfig({ | ||
myth: { | ||
compile: { | ||
expand: true, | ||
cwd: 'css', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'css', | ||
ext: '.css' | ||
}, | ||
release: { | ||
files: { | ||
'dist/flexboxgrid.css': 'src/css/flexboxgrid.css' | ||
} | ||
} | ||
}, | ||
cssmin: { | ||
concat: { | ||
files: { | ||
'css/index.css': ['vendor/css/normalize.css', 'src/css/style.css', 'src/css/flexboxgrid.css'] | ||
} | ||
}, | ||
minify: { | ||
expand: true, | ||
cwd: 'css', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'css', | ||
ext: '.min.css' | ||
}, | ||
release: { | ||
expand: true, | ||
cwd: 'dist', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'dist', | ||
ext: '.min.css' | ||
} | ||
}, | ||
uglify: { | ||
release: { | ||
files: { | ||
'js/index.js': 'src/js/index.js' | ||
} | ||
} | ||
}, | ||
processhtml: { | ||
dist: { | ||
options: { | ||
process: true | ||
}, | ||
files: { | ||
'index.html': ['src/index.html'] | ||
} | ||
} | ||
grunt.initConfig({ | ||
myth: { | ||
compile: { | ||
expand: true, | ||
cwd: 'css', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'css', | ||
ext: '.css' | ||
}, | ||
release: { | ||
files: { | ||
'dist/flexboxgrid.css': 'src/css/flexboxgrid.css' | ||
} | ||
} | ||
}, | ||
rework: { | ||
compile: { | ||
expand: true, | ||
cwd: 'css', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'css', | ||
ext: '.css' | ||
}, | ||
release: { | ||
files: { | ||
'src/css/flexboxgrid.css': 'src/css/flexboxgrid.css' | ||
} | ||
}, | ||
options: { | ||
use: [ | ||
reworkCustomMedia | ||
] | ||
} | ||
}, | ||
cssmin: { | ||
concat: { | ||
files: { | ||
'css/index.css': ['vendor/css/normalize.css', 'src/css/style.css', 'src/css/flexboxgrid.css'] | ||
} | ||
}, | ||
minify: { | ||
expand: true, | ||
cwd: 'css', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'css', | ||
ext: '.min.css' | ||
}, | ||
release: { | ||
expand: true, | ||
cwd: 'dist', | ||
src: ['*.css', '!*.min.css'], | ||
dest: 'dist', | ||
ext: '.min.css' | ||
} | ||
}, | ||
uglify: { | ||
release: { | ||
files: { | ||
'js/index.js': 'src/js/index.js' | ||
} | ||
} | ||
}, | ||
processhtml: { | ||
dist: { | ||
options: { | ||
process: true | ||
}, | ||
htmlmin: { | ||
dist: { | ||
options: { | ||
removeComments: true, | ||
collapseWhitespace: true | ||
}, | ||
files: { | ||
'index.html': ['index.html'] | ||
} | ||
} | ||
files: { | ||
'index.html': ['src/index.html'] | ||
} | ||
} | ||
}, | ||
htmlmin: { | ||
dist: { | ||
options: { | ||
removeComments: true, | ||
collapseWhitespace: true | ||
}, | ||
watch: { | ||
css: { | ||
files: 'src/**/*', | ||
tasks: ['default'], | ||
}, | ||
livereload: { | ||
options: { | ||
livereload: true, | ||
}, | ||
files: [ | ||
'index.html', | ||
'css/*.css', | ||
'js/*.js', | ||
'img/*' | ||
] | ||
} | ||
files: { | ||
'index.html': ['index.html'] | ||
} | ||
}); | ||
} | ||
}, | ||
watch: { | ||
css: { | ||
files: 'src/**/*', | ||
tasks: ['default'], | ||
}, | ||
livereload: { | ||
options: { | ||
livereload: true, | ||
}, | ||
files: [ | ||
'index.html', | ||
'css/*.css', | ||
'js/*.js', | ||
'img/*' | ||
] | ||
} | ||
} | ||
}); | ||
|
||
// These plugins provide necessary tasks. | ||
grunt.loadNpmTasks('grunt-myth'); | ||
grunt.loadNpmTasks('grunt-contrib-cssmin'); | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
grunt.loadNpmTasks('grunt-processhtml'); | ||
grunt.loadNpmTasks('grunt-contrib-htmlmin'); | ||
// These plugins provide necessary tasks. | ||
grunt.loadNpmTasks('grunt-myth'); | ||
grunt.loadNpmTasks('grunt-rework'); | ||
grunt.loadNpmTasks('grunt-contrib-cssmin'); | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
grunt.loadNpmTasks('grunt-processhtml'); | ||
grunt.loadNpmTasks('grunt-contrib-htmlmin'); | ||
|
||
// Default task. | ||
grunt.registerTask('default', | ||
['cssmin:concat', | ||
'myth', | ||
'cssmin:minify', | ||
'cssmin:release', | ||
'uglify', | ||
'processhtml', | ||
'htmlmin' | ||
]); | ||
grunt.registerTask('reload', ['watch']); | ||
// Default task. | ||
grunt.registerTask('default', ['cssmin:concat', | ||
'rework', | ||
'myth', | ||
'cssmin:minify', | ||
'cssmin:release', | ||
'uglify', | ||
'processhtml', | ||
'htmlmin' | ||
]); | ||
grunt.registerTask('reload', ['watch']); | ||
|
||
}; |
Oops, something went wrong.