temporarily disable jscs because of it's incompatibility with babel 6

This commit is contained in:
Kevin Ross 2016-02-10 12:10:11 -06:00
parent c04c041ae6
commit 55404dd32f
2 changed files with 5 additions and 6 deletions

View File

@ -528,15 +528,15 @@ module.exports = function (grunt) {
testSubtasks.push('saucelabs-qunit'); testSubtasks.push('saucelabs-qunit');
} }
grunt.registerTask('test', testSubtasks); grunt.registerTask('test', testSubtasks);
grunt.registerTask('test-js', ['eslint', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']); grunt.registerTask('test-js', ['eslint'/*, 'jscs:core', 'jscs:test', 'jscs:grunt'*/, 'qunit']);
// JS distribution task. // JS distribution task.
grunt.registerTask('dist-js', [ grunt.registerTask('dist-js', [
'clean:dist-js', 'clean:dist-js',
'eslint', 'eslint',
'jscs:grunt', //'jscs:grunt',
'jscs:core', //'jscs:core',
'jscs:test', //'jscs:test',
'exec:rollup-iife', 'exec:rollup-iife',
'exec:rollup-umd', 'exec:rollup-umd',
'exec:rollup-es2015', 'exec:rollup-es2015',

View File

@ -1,7 +1,7 @@
{ {
"name": "bootstrap-material-design", "name": "bootstrap-material-design",
"description": "Material Design for Bootstrap 4", "description": "Material Design for Bootstrap 4",
"version": "4.0.0-prealpha", "version": "4.0.0-alpha",
"keywords": [ "keywords": [
"material", "material",
"design", "design",
@ -58,7 +58,6 @@
"grunt-exec": "~0.4.6", "grunt-exec": "~0.4.6",
"grunt-html": "~6.0.0", "grunt-html": "~6.0.0",
"grunt-jekyll": "~0.4.3", "grunt-jekyll": "~0.4.3",
"grunt-jscs": "~2.7.0",
"grunt-postcss": "^0.7.1", "grunt-postcss": "^0.7.1",
"grunt-sass": "^1.1.0", "grunt-sass": "^1.1.0",
"grunt-saucelabs": "~8.6.2", "grunt-saucelabs": "~8.6.2",