From 23e398e5acdf148345ec9bab4e7ea9fb34798ac2 Mon Sep 17 00:00:00 2001 From: Kevin Ross Date: Sun, 24 Jan 2016 13:11:02 -0600 Subject: [PATCH] switch nomenclature from es6 to es2015 --- Gruntfile.js | 6 +++--- grunt/{rollup.es6.config.js => rollup.es2015.config.js} | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename grunt/{rollup.es6.config.js => rollup.es2015.config.js} (70%) diff --git a/Gruntfile.js b/Gruntfile.js index b4be5ed7..a0c578be 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -439,8 +439,8 @@ module.exports = function (grunt) { 'rollup-umd': { command: 'rollup -c grunt/rollup.umd.config.js' }, - 'rollup-es6': { - command: 'rollup -c grunt/rollup.es6.config.js' + 'rollup-es2015': { + command: 'rollup -c grunt/rollup.es2015.config.js' } }, @@ -538,7 +538,7 @@ module.exports = function (grunt) { 'jscs:test', 'exec:rollup-iife', 'exec:rollup-umd', - 'exec:rollup-es6', + 'exec:rollup-es2015', 'stamp', 'uglify:dist', 'copy:dist-to-docs' diff --git a/grunt/rollup.es6.config.js b/grunt/rollup.es2015.config.js similarity index 70% rename from grunt/rollup.es6.config.js rename to grunt/rollup.es2015.config.js index 6a368003..da54021d 100644 --- a/grunt/rollup.es6.config.js +++ b/grunt/rollup.es2015.config.js @@ -3,5 +3,5 @@ import extend from 'extend' export default extend(true, config, { format: 'es6', - dest: 'dist/js/bootstrap-material-design.es6.js' + dest: 'dist/js/bootstrap-material-design.es2015.js' }) diff --git a/package.json b/package.json index 633d808d..3c686a63 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "style": "dist/css/bootstrap-material-design.css", "sass": "scss/bootstrap-material-design.scss", "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": { "type": "git", "url": "https://github.com/FezVrasta/bootstrap-material-design.git"