Update all packages, add polyfills via babel, cleanups
This commit is contained in:
parent
828ec974e8
commit
47ecb16e58
9
.babelrc
9
.babelrc
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"presets": [
|
"presets": [
|
||||||
"@vue/app"
|
[
|
||||||
|
"@vue/app",
|
||||||
|
{
|
||||||
|
"polyfills": ["es7.object.entries", "es6.promise"]
|
||||||
|
}
|
||||||
|
]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"root": true,
|
"root": true,
|
||||||
"extends": [
|
"extends": [
|
||||||
"plugin:vue/essential",
|
"plugin:vue/essential"
|
||||||
"@vue/prettier"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## [1.0.0] 2018-10-14
|
|
||||||
### Stable Original Release
|
|
||||||
|
|
||||||
## [1.0.1] 2018-12-03
|
## [1.0.1] 2018-12-03
|
||||||
### Minor updates
|
### Minor updates
|
||||||
- Upgrade packages
|
- Upgrade packages
|
||||||
- Change sidebar gradient colors (more pleasant)
|
- Change sidebar gradient colors (more pleasant)
|
||||||
- Make links "bolder" in the sidebar so they are more readable
|
- Make links "bolder" in the sidebar so they are more readable
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.0] 2018-10-14
|
||||||
|
### Stable Original Release
|
||||||
|
|||||||
32
package.json
32
package.json
@ -11,33 +11,27 @@
|
|||||||
"serve": "vue-cli-service serve --open"
|
"serve": "vue-cli-service serve --open"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chart.js": "^2.7.2",
|
"chart.js": "^2.7.3",
|
||||||
"es6-promise": "^4.2.4",
|
"vue": "^2.6.6",
|
||||||
"vue": "^2.5.17",
|
|
||||||
"vue-chartjs": "^3.4.0",
|
"vue-chartjs": "^3.4.0",
|
||||||
"vue-i18n": "^8.0.0",
|
"vue-i18n": "^8.8.1",
|
||||||
"vue-router": "^3.0.1",
|
"vue-router": "^3.0.2",
|
||||||
"vue2-transitions": "^0.2.3"
|
"vue2-transitions": "^0.2.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "^3.2.0",
|
"@vue/cli-plugin-babel": "^3.4.0",
|
||||||
"@vue/cli-plugin-eslint": "^3.2.1",
|
"@vue/cli-plugin-eslint": "^3.4.0",
|
||||||
"@vue/cli-service": "^3.2.0",
|
"@vue/cli-service": "^3.4.0",
|
||||||
"@vue/eslint-config-prettier": "^4.0.1",
|
"node-sass": "^4.11.0",
|
||||||
"node-sass": "^4.10.0",
|
|
||||||
"sass-loader": "^7.1.0",
|
"sass-loader": "^7.1.0",
|
||||||
"vue-cli-plugin-i18n": "^0.5.0",
|
"vue-cli-plugin-i18n": "^0.5.1",
|
||||||
"vue-template-compiler": "^2.5.17"
|
"vue-template-compiler": "^2.6.6"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"> 1%",
|
"> 1%",
|
||||||
"last 2 versions",
|
"last 2 versions",
|
||||||
"not ie <= 8"
|
"not ie <= 11"
|
||||||
],
|
],
|
||||||
"description": "A sample admin dashboard based on paper dashboard UI template",
|
"description": "A sample admin dashboard based on black dashboard UI template",
|
||||||
"author": "cristian.jora <joracristi@gmail.com>",
|
"author": "cristian.jora <joracristi@gmail.com>"
|
||||||
"engines": {
|
|
||||||
"node": ">= 8.1.4",
|
|
||||||
"npm": ">= 5.0.0"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,6 @@ import Notify from "@/components/NotificationPlugin";
|
|||||||
import GlobalComponents from "./globalComponents";
|
import GlobalComponents from "./globalComponents";
|
||||||
import GlobalDirectives from "./globalDirectives";
|
import GlobalDirectives from "./globalDirectives";
|
||||||
import RTLPlugin from "./RTLPlugin";
|
import RTLPlugin from "./RTLPlugin";
|
||||||
import "es6-promise/auto";
|
|
||||||
|
|
||||||
//css assets
|
//css assets
|
||||||
import "@/assets/sass/black-dashboard.scss";
|
import "@/assets/sass/black-dashboard.scss";
|
||||||
|
|||||||
@ -11,6 +11,6 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
css: {
|
css: {
|
||||||
// Enable CSS source maps.
|
// Enable CSS source maps.
|
||||||
sourceMap: true
|
sourceMap: process.env.NODE_ENV !== 'production'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user