Skip to content

Commit

Permalink
upgrade flip-toolkit to v7.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
aholachek committed May 13, 2022
1 parent 62a7b0d commit dddf468
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
16 changes: 12 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Some unfortunately non-automated tasks that need to be done manually:
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)
2. Run `yarn format-and-fix` in the top level dir
3. Make sure readme is up-to-date
4. Verify that no unintended deps were added to `dependencies` in either package.json.'
4. Verify that no unintended deps were added to `dependencies` in either package.json.

### Beta Version

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

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

### Real release

1. Release `flip-toolkit`, wait a bit (30mins+) and ensure it shows up on npm, unpkg, maybe even https://bundlephobia.com/[email protected] to make sure nothing unexpected changed with the size, and is working on this codesandbox: https://codesandbox.io/s/5v1k1nwz8l?file=/package.json.
2. Once everything looks good, release `react-flip-toolkit` after upgrading package.json to the new version of `flip-toolkit`.
1. Release `flip-toolkit`, wait a bit (30mins+) and ensure the correct version shows up on:
- npm: https://www.npmjs.com/package/flip-toolkit
- unpkg: https://unpkg.com/flip-toolkit
- package-phobia: https://packagephobia.com/result?p=flip-toolkit
- and is working on this codesandbox which fetches the latest version of flip-toolkit: https://codesandbox.io/s/5v1k1nwz8l
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:
- npm: https://www.npmjs.com/package/react-flip-toolkit
- unpkg: https://unpkg.com/react-flip-toolkit
- package-phobia: https://packagephobia.com/result?p=react-flip-toolkit
- and is working on this codesandbox which fetches the latest version of react-flip-toolkit: https://codesandbox.io/s/8130rn9q2
4 changes: 2 additions & 2 deletions packages/flip-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flip-toolkit",
"version": "7.0.13",
"version": "7.0.14",
"description": "Configurable FLIP animation helpers",
"license": "MIT",
"src": "src/index.ts",
Expand Down Expand Up @@ -45,7 +45,7 @@
"parcel": "^1.12.4",
"prettier": "2.1.2"
},
"files": [
"files": [
"lib"
]
}
2 changes: 1 addition & 1 deletion packages/react-flip-toolkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"prepublish": "npm run build"
},
"dependencies": {
"flip-toolkit": "7.0.13",
"flip-toolkit": "7.0.14",
"prop-types": "^15.5.7"
},
"peerDependencies": {
Expand Down

0 comments on commit dddf468

Please sign in to comment.