Skip to content

Commit

Permalink
chore(package.json): bump version for release deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bhough committed Feb 17, 2021
1 parent 61abc24 commit 7d5e215
Show file tree
Hide file tree
Showing 3 changed files with 625 additions and 602 deletions.
24 changes: 4 additions & 20 deletions docs/assets/polished.js
Original file line number Diff line number Diff line change
Expand Up @@ -1579,15 +1579,7 @@
return template.trim();
}

function _templateObject() {
var data = _taggedTemplateLiteralLoose__default['default'](["linear-gradient(", "", ")"]);

_templateObject = function _templateObject() {
return data;
};

return data;
}
var _templateObject;

/**
* CSS for declaring a linear gradient, including a fallback background-color. The fallback is either the first color-stop or an explicitly passed fallback color.
Expand Down Expand Up @@ -1630,7 +1622,7 @@

return {
backgroundColor: fallback || colorStops[0].replace(/,\s+/g, ',').split(' ')[0].replace(/,(?=\S)/g, ', '),
backgroundImage: constructGradientValue(_templateObject(), toDirection, colorStops.join(', ').replace(/,(?=\S)/g, ', '))
backgroundImage: constructGradientValue(_templateObject || (_templateObject = _taggedTemplateLiteralLoose__default['default'](["linear-gradient(", "", ")"])), toDirection, colorStops.join(', ').replace(/,(?=\S)/g, ', '))
};
}

Expand Down Expand Up @@ -1762,15 +1754,7 @@
}];
}

function _templateObject$1() {
var data = _taggedTemplateLiteralLoose__default['default'](["radial-gradient(", "", "", "", ")"]);

_templateObject$1 = function _templateObject() {
return data;
};

return data;
}
var _templateObject$1;

/**
* CSS for declaring a radial gradient, including a fallback background-color. The fallback is either the first color-stop or an explicitly passed fallback color.
Expand Down Expand Up @@ -1819,7 +1803,7 @@

return {
backgroundColor: fallback || colorStops[0].split(' ')[0],
backgroundImage: constructGradientValue(_templateObject$1(), position, shape, extent, colorStops.join(', '))
backgroundImage: constructGradientValue(_templateObject$1 || (_templateObject$1 = _taggedTemplateLiteralLoose__default['default'](["radial-gradient(", "", "", "", ")"])), position, shape, extent, colorStops.join(', '))
};
}

Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polished",
"version": "4.1.0",
"version": "4.1.1",
"description": "A lightweight toolset for writing styles in Javascript.",
"license": "MIT",
"author": "Brian Hough <[email protected]> (https://polished.js.org)",
Expand Down Expand Up @@ -63,18 +63,18 @@
"build:lib": "src/**/*.js"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@babel/runtime": "^7.12.13",
"@scarf/scarf": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "^7.12.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.1.0",
"@babel/preset-env": "^7.12.16",
"@babel/preset-flow": "^7.12.13",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.3.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
Expand All @@ -84,25 +84,25 @@
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.1.0",
"documentation": "12.3.0",
"eslint": "^7.18.0",
"eslint": "^7.20.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.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"lint-staged": "^10.5.4",
"npm-watch": "^0.7.0",
"prettier": "^2.2.1",
"pushstate-server": "^3.1.0",
"ramda": "^0.27.0",
"rollup": "^2.38.0",
"rollup": "^2.39.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.3.7",
"semantic-release": "^17.3.9",
"shx": "^0.3.3",
"tsgen": "1.3.0",
"typescript": "4.1.3",
"typescript": "4.1.5",
"validate-commit-msg": "^2.14.0"
},
"config": {
Expand Down
Loading

0 comments on commit 7d5e215

Please sign in to comment.