Skip to content

Commit cee9349

Browse files
committed
build(library): upgrade dependencies
1 parent 063c85d commit cee9349

File tree

3 files changed

+1141
-625
lines changed

3 files changed

+1141
-625
lines changed

docs/assets/polished.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3532,7 +3532,7 @@
35323532
var alpha = typeof parsedColor.alpha === 'number' ? parsedColor.alpha : 1;
35333533

35343534
var colorWithAlpha = _extends__default['default']({}, parsedColor, {
3535-
alpha: guard(0, 1, (alpha * 100 - parseFloat(amount) * 100) / 100)
3535+
alpha: guard(0, 1, +(alpha * 100 - parseFloat(amount) * 100).toFixed(2) / 100)
35363536
});
35373537

35383538
return rgba(colorWithAlpha);

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -63,45 +63,45 @@
6363
"build:lib": "src/**/*.js"
6464
},
6565
"dependencies": {
66-
"@babel/runtime": "^7.12.0"
66+
"@babel/runtime": "^7.12.5"
6767
},
6868
"devDependencies": {
69-
"@babel/cli": "^7.12.0",
70-
"@babel/core": "^7.12.0",
71-
"@babel/plugin-transform-runtime": "^7.12.0",
72-
"@babel/polyfill": "^7.8.7",
73-
"@babel/preset-env": "^7.12.0",
74-
"@babel/preset-flow": "^7.9.0",
69+
"@babel/cli": "^7.12.7",
70+
"@babel/core": "^7.12.7",
71+
"@babel/plugin-transform-runtime": "^7.12.1",
72+
"@babel/polyfill": "^7.12.1",
73+
"@babel/preset-env": "^7.12.7",
74+
"@babel/preset-flow": "^7.12.1",
7575
"@rollup/plugin-babel": "^5.2.1",
76-
"@rollup/plugin-node-resolve": "^9.0.0",
77-
"@rollup/plugin-replace": "^2.3.2",
76+
"@rollup/plugin-node-resolve": "^10.0.0",
77+
"@rollup/plugin-replace": "^2.3.4",
7878
"babel-eslint": "^10.1.0",
79-
"babel-jest": "^26.5.2",
79+
"babel-jest": "^26.6.3",
8080
"babel-plugin-add-module-exports": "^1.0.2",
8181
"babel-plugin-annotate-pure-calls": "^0.4.0",
8282
"babel-plugin-preval": "5.0.0",
8383
"cross-env": "^7.0.2",
8484
"cz-conventional-changelog": "^3.1.0",
8585
"documentation": "12.3.0",
86-
"eslint": "^7.11.0",
87-
"eslint-config-airbnb-base": "^14.1.0",
86+
"eslint": "^7.14.0",
87+
"eslint-config-airbnb-base": "^14.2.1",
8888
"eslint-plugin-import": "^2.22.1",
8989
"flow-bin": "^0.133.0",
9090
"flow-copy-source": "^2.0.8",
9191
"husky": "^4.2.5",
92-
"jest": "^26.5.3",
93-
"lint-staged": "^10.4.0",
92+
"jest": "^26.6.3",
93+
"lint-staged": "^10.5.1",
9494
"npm-watch": "^0.7.0",
95-
"prettier": "^2.0.5",
95+
"prettier": "^2.2.0",
9696
"pushstate-server": "^3.1.0",
9797
"ramda": "^0.27.0",
98-
"rollup": "^2.31.0",
98+
"rollup": "^2.33.3",
9999
"rollup-plugin-sourcemaps": "^0.6.3",
100100
"rollup-plugin-terser": "^7.0.2",
101-
"semantic-release": "^17.2.1",
102-
"shx": "^0.3.2",
101+
"semantic-release": "^17.2.4",
102+
"shx": "^0.3.3",
103103
"tsgen": "1.3.0",
104-
"typescript": "4.0.3",
104+
"typescript": "4.1.2",
105105
"validate-commit-msg": "^2.14.0"
106106
},
107107
"config": {

0 commit comments

Comments
 (0)