switch nomenclature from es6 to es2015

This commit is contained in:
Kevin Ross 2016-01-24 13:11:02 -06:00
parent cb1d9034a2
commit 23e398e5ac
3 changed files with 5 additions and 5 deletions

View File

@ -439,8 +439,8 @@ module.exports = function (grunt) {
'rollup-umd': { 'rollup-umd': {
command: 'rollup -c grunt/rollup.umd.config.js' command: 'rollup -c grunt/rollup.umd.config.js'
}, },
'rollup-es6': { 'rollup-es2015': {
command: 'rollup -c grunt/rollup.es6.config.js' command: 'rollup -c grunt/rollup.es2015.config.js'
} }
}, },
@ -538,7 +538,7 @@ module.exports = function (grunt) {
'jscs:test', 'jscs:test',
'exec:rollup-iife', 'exec:rollup-iife',
'exec:rollup-umd', 'exec:rollup-umd',
'exec:rollup-es6', 'exec:rollup-es2015',
'stamp', 'stamp',
'uglify:dist', 'uglify:dist',
'copy:dist-to-docs' 'copy:dist-to-docs'

View File

@ -3,5 +3,5 @@ import extend from 'extend'
export default extend(true, config, { export default extend(true, config, {
format: 'es6', format: 'es6',
dest: 'dist/js/bootstrap-material-design.es6.js' dest: 'dist/js/bootstrap-material-design.es2015.js'
}) })

View File

@ -23,7 +23,7 @@
"style": "dist/css/bootstrap-material-design.css", "style": "dist/css/bootstrap-material-design.css",
"sass": "scss/bootstrap-material-design.scss", "sass": "scss/bootstrap-material-design.scss",
"main": "dist/js/bootstrap-material-design.umd.js", "main": "dist/js/bootstrap-material-design.umd.js",
"jsnext:main": "dist/bootstrap-material-design.es6.js", "jsnext:main": "dist/bootstrap-material-design.es2015.js",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/FezVrasta/bootstrap-material-design.git" "url": "https://github.com/FezVrasta/bootstrap-material-design.git"