Merge pull request #13077 from nextcloud/stb14-ie11-compatibility-updatenotifications

[stable14] Ie11 compatibility updatenotifications
This commit is contained in:
Roeland Jago Douma 2018-12-17 13:26:18 +01:00 committed by GitHub
commit 107e983da0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 1179 additions and 11 deletions

View File

@ -0,0 +1,12 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: ['last 2 versions', 'ie >= 11']
}
}
]
]
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -28,6 +28,9 @@
"vue-select": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"vue-loader": "^15.2.6",

View File

@ -13,6 +13,11 @@ module.exports = {
{
test: /\.vue$/,
loader: 'vue-loader',
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
},
@ -20,9 +25,6 @@ module.exports = {
new VueLoaderPlugin()
],
resolve: {
alias: {
'vue$': 'vue/dist/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
}
}