create-application-template 3.0.0 → 3.0.3
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 +9 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|

|
|
3
3
|

|
|
4
4
|
|
|
5
|
+
> This package has moved to @epic-effx/create-application-template. Please install @epic-effx/create-application-template instead.
|
|
6
|
+
|
|
5
7
|
# Create Application Template
|
|
6
8
|
This project aims to provide a configured application template for you to build upon.
|
|
7
9
|
|
|
@@ -26,7 +28,7 @@ then create your project
|
|
|
26
28
|
npx create-application-template --name={my-project}
|
|
27
29
|
```
|
|
28
30
|
|
|
29
|
-
## newest
|
|
31
|
+
## newest features 🚀
|
|
30
32
|
React 19 with [React Compiler](https://react.dev/learn/react-compiler/introduction) opt-in
|
|
31
33
|
|
|
32
34
|
this version takes advantage of the React Compiler's automatic optimization
|
|
@@ -115,12 +117,13 @@ INLINE_SIZE_LIMIT={default is 10000}
|
|
|
115
117
|
|
|
116
118
|
## dependency overrides
|
|
117
119
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
120
|
+
this version includes minimal npm `overrides` to patch known transitive vulnerabilities in webpack tooling
|
|
121
|
+
|
|
122
|
+
they are intentionally limited to patch-level upgrades within the same major
|
|
123
|
+
|
|
124
|
+
you can remove them in the future by:
|
|
125
|
+
|
|
121
126
|
1. running `npm update`
|
|
122
127
|
2. removing the `overrides` section
|
|
123
128
|
3. reinstalling dependencies
|
|
124
129
|
4. running `npm audit`
|
|
125
|
-
|
|
126
|
-
|