Skip to content

Commit d5cd2e4

Browse files
committed
chore(release): 2.0.0
1 parent 51f26fe commit d5cd2e4

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.0.0](https://github.com/moxystudio/react-wait-for-react/compare/v1.0.1...v2.0.0) (2020-03-10)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* while the API hasn't changed, the internal behavior changed enough to worth having a major bump
11+
12+
### Features
13+
14+
* make the component more ergonomic ([51f26fe](https://github.com/moxystudio/react-wait-for-react/commit/51f26fece0252ba9fc467bfb947ab1be72424832))
15+
516
### [1.0.1](https://github.com/moxystudio/react-wait-for-react/compare/v1.0.0...v1.0.1) (2020-01-22)
617

718
## 1.0.0 (2020-01-22)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@moxy/react-wait-for-react",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "Easily render a loader while your React app is loading, optionally waiting for a promise as well",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -41,8 +41,8 @@
4141
},
4242
"scripts": {
4343
"prebuild": "cpr src src-tmp -d && babel src/inline-script.raw.js -o src-tmp/inline-script.raw.js && terser -c -m -o src-tmp/inline-script.raw.js -- src-tmp/inline-script.raw.js",
44-
"build:commonjs": "BABEL_ENV=commonjs babel src-tmp -d lib --delete-dir-on-start",
45-
"build:es": "BABEL_ENV=es babel src-tmp -d es --delete-dir-on-start",
44+
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src-tmp -d lib --delete-dir-on-start",
45+
"build:es": "cross-env BABEL_ENV=es babel src-tmp -d es --delete-dir-on-start",
4646
"build": "npm run build:commonjs && npm run build:es",
4747
"postbuild": "rimraf lib/inline-script.raw.js es/inline-script.raw.js src-tmp",
4848
"test": "jest",

0 commit comments

Comments
 (0)