Skip to content

Commit

Permalink
build(library): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bhough committed Nov 21, 2020
1 parent 063c85d commit cee9349
Show file tree
Hide file tree
Showing 3 changed files with 1,141 additions and 625 deletions.
2 changes: 1 addition & 1 deletion docs/assets/polished.js
Original file line number Diff line number Diff line change
Expand Up @@ -3532,7 +3532,7 @@
var alpha = typeof parsedColor.alpha === 'number' ? parsedColor.alpha : 1;

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

return rgba(colorWithAlpha);
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,45 +63,45 @@
"build:lib": "src/**/*.js"
},
"dependencies": {
"@babel/runtime": "^7.12.0"
"@babel/runtime": "^7.12.5"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/plugin-transform-runtime": "^7.12.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.12.0",
"@babel/preset-flow": "^7.9.0",
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-flow": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-jest": "^26.6.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-preval": "5.0.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"documentation": "12.3.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"flow-bin": "^0.133.0",
"flow-copy-source": "^2.0.8",
"husky": "^4.2.5",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"npm-watch": "^0.7.0",
"prettier": "^2.0.5",
"prettier": "^2.2.0",
"pushstate-server": "^3.1.0",
"ramda": "^0.27.0",
"rollup": "^2.31.0",
"rollup": "^2.33.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.2.1",
"shx": "^0.3.2",
"semantic-release": "^17.2.4",
"shx": "^0.3.3",
"tsgen": "1.3.0",
"typescript": "4.0.3",
"typescript": "4.1.2",
"validate-commit-msg": "^2.14.0"
},
"config": {
Expand Down

0 comments on commit cee9349

Please sign in to comment.