create-application-template 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ then create your project
|
|
|
26
26
|
npx create-application-template --name={my-project}
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
## newest
|
|
29
|
+
## newest features 🚀
|
|
30
30
|
React 19 with [React Compiler](https://react.dev/learn/react-compiler/introduction) opt-in
|
|
31
31
|
|
|
32
32
|
this version takes advantage of the React Compiler's automatic optimization
|
|
@@ -115,9 +115,12 @@ INLINE_SIZE_LIMIT={default is 10000}
|
|
|
115
115
|
|
|
116
116
|
## dependency overrides
|
|
117
117
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
this version includes minimal npm `overrides` to patch known transitive vulnerabilities in webpack tooling
|
|
119
|
+
|
|
120
|
+
they are intentionally limited to patch-level upgrades within the same major
|
|
121
|
+
|
|
122
|
+
you can remove them in the future by:
|
|
123
|
+
|
|
121
124
|
1. running `npm update`
|
|
122
125
|
2. removing the `overrides` section
|
|
123
126
|
3. reinstalling dependencies
|