Skip to content

Commit ce9cc5a

Browse files
authored
Merge pull request #480 from coreui/dev-v2-updates
v2.1.14
2 parents 07e8192 + fa7b668 commit ce9cc5a

Some content is hidden

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

66 files changed

+2847
-1154
lines changed

.babelrc.js

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
11
module.exports = {
22
presets: [
33
[
4-
'@babel/env',
4+
"@babel/preset-env",
55
{
6+
"targets": {
7+
"esmodules": true,
8+
"ie": 10
9+
},
10+
useBuiltIns: "usage",
11+
corejs: {version: 3, proposals: true},
612
loose: true,
713
modules: false,
8-
exclude: ['transform-typeof-symbol']
14+
exclude: ["transform-typeof-symbol"]
915
}
1016
]
1117
],
1218
plugins: [
13-
process.env.PLUGINS && 'transform-es2015-modules-strip',
14-
['@babel/proposal-object-rest-spread', {loose: true, useBuiltIns: true}]
19+
process.env.PLUGINS && "transform-es2015-modules-strip",
20+
[
21+
"@babel/proposal-object-rest-spread", {
22+
loose: true,
23+
useBuiltIns: true
24+
}
25+
],
26+
"@babel/plugin-proposal-throw-expressions"
1527
].filter(Boolean),
1628
env: {
1729
test: {
18-
plugins: [ 'istanbul' ]
30+
plugins: ["istanbul"],
1931
}
2032
}
2133
};

.eslintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"no-extra-parens": "error",
1414
"no-prototype-builtins": "error",
1515
"no-template-curly-in-string": "error",
16-
"compat/compat": "error",
16+
"compat/compat": "warn",
1717
"valid-jsdoc": "error",
1818

1919
// Best Practices
@@ -31,6 +31,7 @@
3131
"guard-for-in": "error",
3232
"no-alert": "error",
3333
"no-caller": "error",
34+
"no-console": "warn",
3435
"no-div-regex": "error",
3536
"no-else-return": "error",
3637
"no-empty-function": "error",

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## v2.1.14
2+
- fix(main): labelColor callback for CustomTooltips
3+
- chore: drop @babel/polyfill in favour of core-js@3 and regenerator-runtime
4+
5+
##### dependencies update
6+
- update: `@coreui/coreui` to `^2.1.14`
7+
- update: `@coreui/coreui-plugin-chartjs-custom-tooltips` to `^1.3.1`
8+
- update: `chart.js` to `^2.8.0`
9+
- update: `core-js` to `^3.1.3`
10+
- update: `flag-icon-css` to `^3.3.0`
11+
- update: `jquery` to `^3.4.1`
12+
- update: `popper.js` to `^1.15.0`
13+
- add: `regenerator-runtime` to `^0.13.2`
14+
- update: `@babel/cli` to `^7.4.4`
15+
- update: `@babel/core` to `^7.4.5`
16+
- update: `@babel/plugin-proposal-object-rest-spread` to `^7.4.4`
17+
- add: `@babel/plugin-proposal-throw-expressions` to `^7.2.0`
18+
- update: `@babel/preset-env` to `^7.4.5`
19+
- update: `autoprefixer` to `^9.6.0`
20+
- update: `browser-sync` to `^2.26.7`
21+
- update: `clean-css-cli` to `^4.3.0`
22+
- update: `js-beautify` to `^1.10.0`
23+
- update: `nodemon` to `^1.19.1`
24+
- update: `node-sass` to `^4.12.0`
25+
- update: `eslint` to `^5.16.0`
26+
- update: `eslint-plugin-compat` to `^3.1.1`
27+
- update: `stylelint` to `^10.1.0`
28+
- update: `stylelint-config-recommended-scss` to `^3.3.0`
29+
- update: `stylelint-config-standard` to `^18.3.0`
30+
- update: `stylelint-order` to `^3.0.0`
31+
- update: `stylelint-scss` to `^3.8.0`
32+
133
## v2.1.12
234
- chore(build/vendors): removes hash tag from urls in css files #460 - thanks @mgsmus
335
- update: `@coreui/coreui` to `^2.1.7`

0 commit comments

Comments
 (0)