Skip to content

Commit dddf468

Browse files
committed
upgrade flip-toolkit to v7.0.14
1 parent 62a7b0d commit dddf468

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CONTRIBUTING.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Some unfortunately non-automated tasks that need to be done manually:
55
1. Run `yarn test` and `yarn test:dom` in the top level dir and make sure jest + mocha browser tests are passing (you'll need to check mocha tests in the browser)
66
2. Run `yarn format-and-fix` in the top level dir
77
3. Make sure readme is up-to-date
8-
4. Verify that no unintended deps were added to `dependencies` in either package.json.'
8+
4. Verify that no unintended deps were added to `dependencies` in either package.json.
99

1010
### Beta Version
1111

@@ -14,9 +14,17 @@ Publish a beta version by doing something like:
1414
`npm version prepatch | preminor | premajor`
1515
`npm publish --tag beta`
1616

17-
in both `flip-toolkit` (first), then updating the version of flip-toolkit` in `react-flip-toolkit` and completing the steps.
17+
in `flip-toolkit` (first), then updating the version of `flip-toolkit` in `react-flip-toolkit` and repeating the steps.
1818

1919
### Real release
2020

21-
1. Release `flip-toolkit`, wait a bit (30mins+) and ensure it shows up on npm, unpkg, maybe even https://bundlephobia.com/result?p=flip-toolkit@7.0.13 to make sure nothing unexpected changed with the size, and is working on this codesandbox: https://codesandbox.io/s/5v1k1nwz8l?file=/package.json.
22-
2. Once everything looks good, release `react-flip-toolkit` after upgrading package.json to the new version of `flip-toolkit`.
21+
1. Release `flip-toolkit`, wait a bit (30mins+) and ensure the correct version shows up on:
22+
- npm: https://www.npmjs.com/package/flip-toolkit
23+
- unpkg: https://unpkg.com/flip-toolkit
24+
- package-phobia: https://packagephobia.com/result?p=flip-toolkit
25+
- and is working on this codesandbox which fetches the latest version of flip-toolkit: https://codesandbox.io/s/5v1k1nwz8l
26+
2. Once everything looks good, release `react-flip-toolkit` after upgrading package.json to the new version of `flip-toolkit`. Once again, verify that everything looks good:
27+
- npm: https://www.npmjs.com/package/react-flip-toolkit
28+
- unpkg: https://unpkg.com/react-flip-toolkit
29+
- package-phobia: https://packagephobia.com/result?p=react-flip-toolkit
30+
- and is working on this codesandbox which fetches the latest version of react-flip-toolkit: https://codesandbox.io/s/8130rn9q2

packages/flip-toolkit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flip-toolkit",
3-
"version": "7.0.13",
3+
"version": "7.0.14",
44
"description": "Configurable FLIP animation helpers",
55
"license": "MIT",
66
"src": "src/index.ts",
@@ -45,7 +45,7 @@
4545
"parcel": "^1.12.4",
4646
"prettier": "2.1.2"
4747
},
48-
"files": [
48+
"files": [
4949
"lib"
5050
]
5151
}

packages/react-flip-toolkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"prepublish": "npm run build"
4848
},
4949
"dependencies": {
50-
"flip-toolkit": "7.0.13",
50+
"flip-toolkit": "7.0.14",
5151
"prop-types": "^15.5.7"
5252
},
5353
"peerDependencies": {

0 commit comments

Comments
 (0)