Skip to content

Commit

Permalink
build(Library): Dep updates/bump pkg
Browse files Browse the repository at this point in the history
Update to dependencies and bump package version for beta release.
  • Loading branch information
bhough committed Feb 12, 2019
1 parent 9316f20 commit 53d3dd8
Show file tree
Hide file tree
Showing 4 changed files with 128 additions and 100 deletions.
12 changes: 8 additions & 4 deletions docs/assets/polished.js
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,8 @@
function linearGradient(_ref) {
var colorStops = _ref.colorStops,
fallback = _ref.fallback,
toDirection = _ref.toDirection;
_ref$toDirection = _ref.toDirection,
toDirection = _ref$toDirection === void 0 ? '' : _ref$toDirection;

if (!colorStops || colorStops.length < 2) {
throw new PolishedError(56);
Expand Down Expand Up @@ -1689,10 +1690,13 @@
*/
function radialGradient(_ref) {
var colorStops = _ref.colorStops,
extent = _ref.extent,
_ref$extent = _ref.extent,
extent = _ref$extent === void 0 ? '' : _ref$extent,
fallback = _ref.fallback,
position = _ref.position,
shape = _ref.shape;
_ref$position = _ref.position,
position = _ref$position === void 0 ? '' : _ref$position,
_ref$shape = _ref.shape,
shape = _ref$shape === void 0 ? '' : _ref$shape;

if (!colorStops || colorStops.length < 2) {
throw new PolishedError(57);
Expand Down
8 changes: 8 additions & 0 deletions docs/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2174,6 +2174,8 @@ <h3 class='fl m0' id='lineargradient'>

<tr>
<td class='break-word'><span class='code bold'>$0.toDirection</span> <code class='quiet'>any</code>

(default <code>&#39;&#39;</code>)
</td>
<td class='break-word'><span></span></td>
</tr>
Expand Down Expand Up @@ -2412,6 +2414,8 @@ <h3 class='fl m0' id='radialgradient'>

<tr>
<td class='break-word'><span class='code bold'>$0.extent</span> <code class='quiet'>any</code>

(default <code>&#39;&#39;</code>)
</td>
<td class='break-word'><span></span></td>
</tr>
Expand All @@ -2424,12 +2428,16 @@ <h3 class='fl m0' id='radialgradient'>

<tr>
<td class='break-word'><span class='code bold'>$0.position</span> <code class='quiet'>any</code>

(default <code>&#39;&#39;</code>)
</td>
<td class='break-word'><span></span></td>
</tr>

<tr>
<td class='break-word'><span class='code bold'>$0.shape</span> <code class='quiet'>any</code>

(default <code>&#39;&#39;</code>)
</td>
<td class='break-word'><span></span></td>
</tr>
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "lib/index.js",
"module": "dist/polished.es.js",
"types": "lib/index.d.ts",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"scripts": {
"build": "yarn build:lib && yarn build:dist && yarn build:flow && yarn build:docs && yarn build:typescript",
"prebuild:lib": "shx rm -rf lib/*",
Expand Down Expand Up @@ -74,26 +74,26 @@
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concat-stream": "^2.0.0",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"documentation": "9.1.1",
"eslint": "^5.12.1",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"flow-bin": "^0.92.1",
"flow-copy-source": "^2.0.2",
"flow-coverage-report": "^0.6.1",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"lodash": "^4.17.11",
"npm-watch": "^0.6.0",
"prettier": "^1.16.3",
"prettier": "^1.16.4",
"pushstate-server": "3.0.1",
"ramda": "^0.26.1",
"rollup": "^1.1.2",
Expand All @@ -104,7 +104,7 @@
"semantic-release": "^15.13.3",
"shx": "^0.3.2",
"tsgen": "1.3.0",
"typescript": "3.2.4",
"typescript": "3.3.3",
"validate-commit-msg": "^2.14.0",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.2"
Expand Down

0 comments on commit 53d3dd8

Please sign in to comment.