Skip to content

Commit

Permalink
Merge pull request #480 from coreui/dev-v2-updates
Browse files Browse the repository at this point in the history
v2.1.14
  • Loading branch information
xidedix authored Jun 14, 2019
2 parents 07e8192 + fa7b668 commit ce9cc5a
Show file tree
Hide file tree
Showing 66 changed files with 2,847 additions and 1,154 deletions.
22 changes: 17 additions & 5 deletions .babelrc.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
module.exports = {
presets: [
[
'@babel/env',
"@babel/preset-env",
{
"targets": {
"esmodules": true,
"ie": 10
},
useBuiltIns: "usage",
corejs: {version: 3, proposals: true},
loose: true,
modules: false,
exclude: ['transform-typeof-symbol']
exclude: ["transform-typeof-symbol"]
}
]
],
plugins: [
process.env.PLUGINS && 'transform-es2015-modules-strip',
['@babel/proposal-object-rest-spread', {loose: true, useBuiltIns: true}]
process.env.PLUGINS && "transform-es2015-modules-strip",
[
"@babel/proposal-object-rest-spread", {
loose: true,
useBuiltIns: true
}
],
"@babel/plugin-proposal-throw-expressions"
].filter(Boolean),
env: {
test: {
plugins: [ 'istanbul' ]
plugins: ["istanbul"],
}
}
};
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"no-extra-parens": "error",
"no-prototype-builtins": "error",
"no-template-curly-in-string": "error",
"compat/compat": "error",
"compat/compat": "warn",
"valid-jsdoc": "error",

// Best Practices
Expand All @@ -31,6 +31,7 @@
"guard-for-in": "error",
"no-alert": "error",
"no-caller": "error",
"no-console": "warn",
"no-div-regex": "error",
"no-else-return": "error",
"no-empty-function": "error",
Expand Down
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## v2.1.14
- fix(main): labelColor callback for CustomTooltips
- chore: drop @babel/polyfill in favour of core-js@3 and regenerator-runtime

##### dependencies update
- update: `@coreui/coreui` to `^2.1.14`
- update: `@coreui/coreui-plugin-chartjs-custom-tooltips` to `^1.3.1`
- update: `chart.js` to `^2.8.0`
- update: `core-js` to `^3.1.3`
- update: `flag-icon-css` to `^3.3.0`
- update: `jquery` to `^3.4.1`
- update: `popper.js` to `^1.15.0`
- add: `regenerator-runtime` to `^0.13.2`
- update: `@babel/cli` to `^7.4.4`
- update: `@babel/core` to `^7.4.5`
- update: `@babel/plugin-proposal-object-rest-spread` to `^7.4.4`
- add: `@babel/plugin-proposal-throw-expressions` to `^7.2.0`
- update: `@babel/preset-env` to `^7.4.5`
- update: `autoprefixer` to `^9.6.0`
- update: `browser-sync` to `^2.26.7`
- update: `clean-css-cli` to `^4.3.0`
- update: `js-beautify` to `^1.10.0`
- update: `nodemon` to `^1.19.1`
- update: `node-sass` to `^4.12.0`
- update: `eslint` to `^5.16.0`
- update: `eslint-plugin-compat` to `^3.1.1`
- update: `stylelint` to `^10.1.0`
- update: `stylelint-config-recommended-scss` to `^3.3.0`
- update: `stylelint-config-standard` to `^18.3.0`
- update: `stylelint-order` to `^3.0.0`
- update: `stylelint-scss` to `^3.8.0`

## v2.1.12
- chore(build/vendors): removes hash tag from urls in css files #460 - thanks @mgsmus
- update: `@coreui/coreui` to `^2.1.7`
Expand Down
Loading

0 comments on commit ce9cc5a

Please sign in to comment.