Browse Source

Merge pull request #4336 from chengshiwen/ie-fix

[Fix-4335][UI] Fix IE 9-11 not supported
pull/3/MERGE
xingchun-chen 4 years ago committed by GitHub
parent
commit
2e44f4c553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      dolphinscheduler-ui/.babelrc
  2. 2
      dolphinscheduler-ui/build/config.js
  3. 12
      dolphinscheduler-ui/package.json
  4. 1
      dolphinscheduler-ui/src/js/conf/home/index.js
  5. 1
      dolphinscheduler-ui/src/js/conf/login/index.js

10
dolphinscheduler-ui/.babelrc

@ -5,7 +5,15 @@
"debug": false,
"useBuiltIns": true,
"targets": {
"browsers": [ "ie > 8", "last 2 version", "safari >= 9" ]
"browsers": [
"> 1%",
"last 2 versions",
"ie >= 9",
"edge >= 12",
"firefox >= 28",
"chrome >= 29",
"opera >= 17"
]
},
"production": {
"plugins": ["transform-remove-console"]

2
dolphinscheduler-ui/build/config.js

@ -47,7 +47,7 @@ const jsEntry = (() => {
parts.shift()
let modules = parts.join('/')
let entry = moduleName(modules)
obj[entry] = val
obj[entry] = ['babel-polyfill', val]
})
return obj
})()

12
dolphinscheduler-ui/package.json

@ -48,6 +48,7 @@
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
@ -86,5 +87,14 @@
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 9",
"edge >= 12",
"firefox >= 28",
"chrome >= 29",
"opera >= 17"
]
}

1
dolphinscheduler-ui/src/js/conf/home/index.js

@ -17,6 +17,7 @@
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import 'babel-polyfill'
import Vue from 'vue'
import ElementUI from 'element-ui'
import locale from 'element-ui/lib/locale/lang/en'

1
dolphinscheduler-ui/src/js/conf/login/index.js

@ -18,6 +18,7 @@
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
// import $ from 'jquery'
import 'babel-polyfill'
import Vue from 'vue'
import ElementUI from 'element-ui'
import locale from 'element-ui/lib/locale/lang/en'

Loading…
Cancel
Save