You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/react-scripts/CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,21 @@
1
1
# `backpack-react-scripts` Change Log
2
2
3
+
## 9.0.1
4
+
5
+
- Fixed an issue where eslint was being shipped, which is not required due to our own linting package.
6
+
7
+
## 9.0.0
8
+
9
+
With this change its is only breaking due to the requirement of needing `Jest` to be upgraded to `26.6.0`, nothing else should affect from a consumer perspective.
# start your app development like you normally would with `create-react-app`
12
12
cd my-app
@@ -32,63 +32,3 @@ npm start
32
32
-`cssModules`: Boolean, true by default.
33
33
-`sriEnabled`: Sets if SRI is to be used during build to add integrity hash for files, see [docs](https://github.com/waysact/webpack-subresource-integrity/blob/master/README.md).
34
34
-**Note** if this is enabled, `crossOriginLoading` value is overriden with `anonymous` in order for it to output with the integrity value.
35
-
36
-
## Releasing a new version of `backpack-react-scripts`
37
-
38
-
1. To publish a new version of `backpack-react-scripts`, run the following command:
39
-
40
-
```
41
-
npm run publish
42
-
```
43
-
44
-
2. You will be prompted to select a new semver version (MAJOR, MINOR, PATCH). Use the [CHANGELOG.md](./CHANGELOG.md) to decide on the nature of the changes since the last release.
45
-
46
-
- If you want to be extra careful, you can publish a prerelease by running this instead:
47
-
48
-
```
49
-
npm run publish -- --canary
50
-
```
51
-
52
-
3. Update the [CHANGELOG.md](./CHANGELOG.md) with the new version, taking care to follow the format of previous releases.
53
-
54
-
## Keeping this fork updated
55
-
56
-
We wish to keep this fork updated with the upstream repo to benefit from the ongoing open source development
57
-
of `create-react-app`. To keep this fork up to date, please follow the steps below:
58
-
59
-
1. Ensure `master` is in sync with `upstream/master`:
1. Rebase `fork` on top of a **tagged release** on `master`:
70
-
71
-
```sh
72
-
git checkout fork
73
-
git rebase <commit>
74
-
```
75
-
76
-
> **Note:**`<commit>` should be the SHA-1 of the latest upstream release - _not_ the latest commit i.e. `upstream/master`
77
-
78
-
1. Pair with someone else to fix any conflicts and cross examine changes in upstream with changes in our fork.
79
-
80
-
> This is the most time consuming part. Take care to make sure you are not regressing any functionality that we have added in our fork.
81
-
82
-
1. Re-name your local, rebased `fork` branch to something else and push it to origin. This will ensure it runs through CI and you can verify your changes.
83
-
84
-
```sh
85
-
git branch -m <branch>
86
-
git push origin <branch>
87
-
```
88
-
89
-
1. Finally, when we are confident that the rebase has been successful, re-name your branch back to `fork` and push it to origin:
0 commit comments