Skip to content
This repository was archived by the owner on Dec 24, 2021. It is now read-only.

Commit 38fbae5

Browse files
authored
Merge pull request coreui#160 from coreui/dev-v2.1.4
v2.1.4
2 parents 3e8af24 + 57fd7f3 commit 38fbae5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+19454
-2420
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.DS_Store
22
node_modules
3-
package-lock.json
43
/dist
54
/coverage
65

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
## [CoreUI for Vue.js](./README.md) version `changelog`
22

3+
##### `v2.1.4`
4+
- fix(jest.config): babel-jest can't process import statement
5+
- chore(package.json): add missing `repository` url
6+
- refactor(DefaultContainer): SidebarToggler add defaultOpen prop example
7+
- test: update snapshots
8+
- chore: add ie polyfills
9+
- fix: extract b-card html header to slot
10+
- fix(Forms): remove deprecated `horizontal` props
11+
- refactor(Dropdowns): add spacings
12+
- chore(vue.config): add publicPath
13+
14+
###### dependencies update
15+
- update `@coreui/coreui` to `^2.1.12`
16+
- update `@coreui/coreui-plugin-chartjs-custom-tooltips` to `^1.3.1`
17+
- update `bootstrap-vue` to `^2.0.0-rc.24`
18+
- update `chart.js` to `^2.8.0`
19+
- update `core-js` to `^2.6.9`
20+
- update `css-vars-ponyfill` to `^2.0.2`
21+
- update `flag-icon-css` to `^3.3.0`
22+
- update `vue` to `^2.6.10`
23+
- update `vue-chartjs` to `^3.4.2`
24+
- update `vue-router` to `^3.0.6"
25+
- update `@vue/cli-plugin-babel` to `^3.8.0`
26+
- update `@vue/cli-plugin-e2e-nightwatch` to `^3.8.0`
27+
- update `@vue/cli-plugin-eslint` to `^3.8.0`
28+
- update `@vue/cli-plugin-unit-jest` to `^3.8.0`
29+
- update `@vue/cli-service` to `^3.8.4`
30+
- update `@vue/test-utils` to `1.0.0-beta.29`
31+
- update `node-sass` to `^4.12.0`
32+
- update `vue-template-compiler` to `^2.6.10`
33+
334
##### `v2.1.3`
435
- fix: change bootstrap-vue library to constant version (2.0.0-rc.11) to fix breaking changes from next versions and avoid future breaking changes
536
- chore: update dependencies

babel.config.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
module.exports = {
22
presets: [
3-
'@vue/app'
3+
['@vue/app', {
4+
polyfills: [
5+
'es6.array.find',
6+
'es6.array.from',
7+
'es6.symbol'
8+
]
9+
}],
10+
["@babel/preset-env", {
11+
"useBuiltIns": "entry"
12+
}]
413
]
5-
}
14+
}

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88
transform: {
99
'^.+\\.vue$': 'vue-jest',
1010
'.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
11-
'^.+\\.jsx?$': 'babel-jest'
11+
'^.+\\.jsx?$': '<rootDir>/node_modules/babel-jest'
1212
},
1313
moduleNameMapper: {
1414
'^@/(.*)$': '<rootDir>/src/$1'

0 commit comments

Comments
 (0)