create-enchilada 1.0.1 → 1.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 +4 -3
- package/dist/index.js +54 -53
- package/package.json +5 -4
- package/templates/node-express/package.json +2 -2
- package/templates/react-dev/package.json +3 -3
- package/templates/react-dev-typescript/package.json +6 -6
- package/templates/react-dev-webpack/package.json +4 -4
- package/templates/react-rspack/biome.json +34 -0
- package/templates/react-rspack/index.html +11 -0
- package/templates/react-rspack/package.json +25 -0
- package/templates/react-rspack/rspack.config.mjs +70 -0
- package/templates/react-rspack/src/App.css +6 -0
- package/templates/{react-experimental → react-rspack}/src/App.jsx +4 -5
- package/templates/{react-experimental → react-rspack}/src/index.css +12 -17
- package/templates/react-rspack/src/main.jsx +10 -0
- package/templates/react-typescript/package.json +3 -3
- package/templates/react-webpack/.babelrc +1 -0
- package/templates/react-webpack/package.json +2 -1
- package/templates/react-experimental/farm.config.ts +0 -5
- package/templates/react-experimental/index.html +0 -12
- package/templates/react-experimental/oxlintrc.json +0 -12
- package/templates/react-experimental/package.json +0 -28
- package/templates/react-experimental/src/App.css +0 -3
- package/templates/react-experimental/src/main.jsx +0 -10
- package/templates/react-experimental/tsconfig.json +0 -25
- package/templates/react-experimental/tsconfig.node.json +0 -11
- /package/templates/{react-experimental → react-rspack}/_gitignore +0 -0
package/README.md
CHANGED
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
## Usage
|
|
16
16
|
### With npm
|
|
17
17
|
```
|
|
18
|
-
npm create enchilada
|
|
18
|
+
npm create enchilada@latest
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
### With pnpm
|
|
22
22
|
```
|
|
23
|
-
pnpm create enchilada
|
|
23
|
+
pnpm create enchilada@latest
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### With yarn
|
|
@@ -28,7 +28,7 @@ pnpm create enchilada
|
|
|
28
28
|
yarn create enchilada
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
<img src="https://raw.githubusercontent.com/Sharmaz/enchilada/refs/heads/main/media/enchiladajs.gif" width="100%" alt="
|
|
31
|
+
<img src="https://raw.githubusercontent.com/Sharmaz/enchilada/refs/heads/main/media/enchiladajs@latest.gif" width="100%" alt="enchiladajs logo"/>
|
|
32
32
|
</p>
|
|
33
33
|
|
|
34
34
|
## CLI Options
|
|
@@ -64,4 +64,5 @@ npm create enchilada -- --template vanilla-js my-app
|
|
|
64
64
|
| **react-dev** | React + Vite + Tailwind CSS + ESlint + React Testing Library |
|
|
65
65
|
| **react-dev-typescript** | React + Typescript + Vite + Tailwind CSS + ESlint + React Testing Library |
|
|
66
66
|
| **react-dev-webpack** | React + Webpack + Tailwind CSS + ESlint + React Testing Library |
|
|
67
|
+
| **react-rspack** | React + Rspack |
|
|
67
68
|
| **node-express** | NodeJS + Express + Sequelize + ESlint + Jest |
|