use babel-preset-env

This commit is contained in:
Pan 2017-06-19 17:59:56 +08:00
parent cf1fb6cd4d
commit e97dbf6115
4 changed files with 126 additions and 138 deletions

View File

@ -1,5 +1,8 @@
{ {
"presets": ["es2015", "stage-2"], "presets": [
["env", { "modules": false }],
"stage-2"
],
"plugins": ["transform-runtime"], "plugins": ["transform-runtime"],
"comments": false "comments": false
} }

View File

@ -43,7 +43,7 @@
"babel-eslint": "7.2.3", "babel-eslint": "7.2.3",
"babel-loader": "7.0.0", "babel-loader": "7.0.0",
"babel-plugin-transform-runtime": "6.23.0", "babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1", "babel-preset-env": "1.5.2",
"babel-preset-stage-2": "6.24.1", "babel-preset-stage-2": "6.24.1",
"babel-register": "6.24.1", "babel-register": "6.24.1",
"chalk": "1.1.3", "chalk": "1.1.3",

View File

@ -1,4 +1,3 @@
(function() {
const vueSticky = {}; const vueSticky = {};
let listenAction; let listenAction;
vueSticky.install = Vue => { vueSticky.install = Vue => {
@ -87,13 +86,6 @@
} }
}) })
}; };
if (typeof exports == 'object') {
module.exports = vueSticky export default vueSticky
} else if (typeof define == 'function' && define.amd) {
define([], () => vueSticky)
} else if (window.Vue) {
window.vueSticky = vueSticky;
Vue.use(vueSticky)
}
}());

View File

@ -1,5 +1,5 @@
import './waves.css'; import './waves.css';
(function() {
const vueWaves = {}; const vueWaves = {};
vueWaves.install = (Vue, options = {}) => { vueWaves.install = (Vue, options = {}) => {
Vue.directive('waves', { Vue.directive('waves', {
@ -42,13 +42,6 @@ import './waves.css';
} }
}) })
}; };
if (typeof exports == 'object') {
module.exports = vueWaves export default vueWaves;
} else if (typeof define == 'function' && define.amd) {
define([], () => vueWaves)
} else if (window.Vue) {
window.vueWaves = vueWaves;
Vue.use(vueWaves)
}
}());