create-cedar-app 0.15.0 → 0.15.1-next.23
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 +2 -2
- package/dist/create-cedar-app.js +202 -202
- package/package.json +3 -3
- package/templates/esm-js/.env.defaults +1 -1
- package/templates/esm-js/.redwood/README.md +9 -9
- package/templates/esm-js/.vscode/launch.json +4 -4
- package/templates/esm-js/.yarnrc.yml +1 -1
- package/templates/esm-js/README.md +1 -1
- package/templates/esm-js/api/db/schema.prisma +1 -1
- package/templates/esm-js/api/src/lib/auth.js +3 -3
- package/templates/esm-js/redwood.toml +5 -5
- package/templates/esm-js/scripts/seed.js +1 -1
- package/templates/esm-js/web/public/README.md +1 -1
- package/templates/esm-js/web/src/pages/FatalErrorPage/FatalErrorPage.jsx +1 -1
- package/templates/esm-ts/.env.defaults +1 -1
- package/templates/esm-ts/.redwood/README.md +9 -9
- package/templates/esm-ts/.vscode/launch.json +4 -4
- package/templates/esm-ts/.yarnrc.yml +1 -1
- package/templates/esm-ts/README.md +1 -1
- package/templates/esm-ts/api/db/schema.prisma +1 -1
- package/templates/esm-ts/api/src/lib/auth.ts +4 -4
- package/templates/esm-ts/redwood.toml +5 -5
- package/templates/esm-ts/scripts/seed.ts +1 -1
- package/templates/esm-ts/web/public/README.md +1 -1
- package/templates/esm-ts/web/src/pages/FatalErrorPage/FatalErrorPage.tsx +1 -1
- package/templates/js/.env.defaults +1 -1
- package/templates/js/.redwood/README.md +9 -9
- package/templates/js/.vscode/launch.json +4 -4
- package/templates/js/.yarnrc.yml +1 -1
- package/templates/js/README.md +1 -1
- package/templates/js/api/db/schema.prisma +1 -1
- package/templates/js/api/jest.config.js +1 -1
- package/templates/js/api/package.json +2 -2
- package/templates/js/api/src/lib/auth.js +4 -4
- package/templates/js/jest.config.js +2 -2
- package/templates/js/package.json +3 -3
- package/templates/js/redwood.toml +5 -5
- package/templates/js/scripts/seed.js +1 -1
- package/templates/js/web/jest.config.js +1 -1
- package/templates/js/web/package.json +4 -4
- package/templates/js/web/public/README.md +1 -1
- package/templates/js/web/src/pages/FatalErrorPage/FatalErrorPage.jsx +1 -1
- package/templates/ts/.env.defaults +1 -1
- package/templates/ts/.redwood/README.md +9 -9
- package/templates/ts/.vscode/launch.json +4 -4
- package/templates/ts/.yarnrc.yml +1 -1
- package/templates/ts/README.md +1 -1
- package/templates/ts/api/db/schema.prisma +1 -1
- package/templates/ts/api/jest.config.js +1 -1
- package/templates/ts/api/package.json +2 -2
- package/templates/ts/api/src/lib/auth.ts +3 -3
- package/templates/ts/jest.config.js +2 -2
- package/templates/ts/package.json +3 -3
- package/templates/ts/redwood.toml +5 -5
- package/templates/ts/scripts/seed.ts +1 -1
- package/templates/ts/web/jest.config.js +1 -1
- package/templates/ts/web/package.json +4 -4
- package/templates/ts/web/public/README.md +1 -1
- package/templates/ts/web/src/pages/FatalErrorPage/FatalErrorPage.tsx +1 -1
- package/templates/esm-js/.yarn/install-state.gz +0 -0
- package/templates/esm-ts/.yarn/install-state.gz +0 -0
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ CedarJS requires Node.js =20.x.
|
|
|
28
28
|
yarn create cedar-app my-cedar-app
|
|
29
29
|
cd my-cedar-app
|
|
30
30
|
yarn install
|
|
31
|
-
yarn
|
|
31
|
+
yarn cedar dev
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
<h3>Resources</h3>
|
|
@@ -115,5 +115,5 @@ up with an upgrade, like this:
|
|
|
115
115
|
|
|
116
116
|
```bash
|
|
117
117
|
cd /path/to/new/cedar-app
|
|
118
|
-
yarn
|
|
118
|
+
yarn cedar upgrade -t canary
|
|
119
119
|
```
|