diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6c8bf7b..ccc3e62 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 @@ -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/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. -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 diff --git a/packages/flip-toolkit/package.json b/packages/flip-toolkit/package.json index 76f2d59..42eeeb1 100644 --- a/packages/flip-toolkit/package.json +++ b/packages/flip-toolkit/package.json @@ -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", @@ -45,7 +45,7 @@ "parcel": "^1.12.4", "prettier": "2.1.2" }, - "files": [ + "files": [ "lib" ] } diff --git a/packages/react-flip-toolkit/package.json b/packages/react-flip-toolkit/package.json index a85902b..060a74d 100644 --- a/packages/react-flip-toolkit/package.json +++ b/packages/react-flip-toolkit/package.json @@ -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": {