create-zudoku 0.0.0-e7477f4 → 0.0.0-e95e2f88
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/dist/index.js +8 -8
- package/package.json +3 -3
- package/dist/templates/default/js/README-template.md +0 -25
- package/dist/templates/default/js/apis/openapi.yaml +0 -806
- package/dist/templates/default/js/eslintrc.json +0 -4
- package/dist/templates/default/js/gitignore +0 -32
- package/dist/templates/default/js/pages/example.mdx +0 -9
- package/dist/templates/default/js/pages/introduction.mdx +0 -15
- package/dist/templates/default/js/public/logo-dark.svg +0 -1
- package/dist/templates/default/js/public/logo-light.svg +0 -1
- package/dist/templates/default/js/zudoku.config.jsx +0 -65
- package/dist/templates/default/ts/README-template.md +0 -25
- package/dist/templates/default/ts/apis/openapi.yaml +0 -806
- package/dist/templates/default/ts/eslintrc.json +0 -6
- package/dist/templates/default/ts/gitignore +0 -32
- package/dist/templates/default/ts/pages/example.mdx +0 -9
- package/dist/templates/default/ts/pages/introduction.mdx +0 -15
- package/dist/templates/default/ts/public/banner-dark.svg +0 -100
- package/dist/templates/default/ts/public/banner.svg +0 -100
- package/dist/templates/default/ts/public/logo-dark.svg +0 -1
- package/dist/templates/default/ts/public/logo-light.svg +0 -1
- package/dist/templates/default/ts/tsconfig.json +0 -16
- package/dist/templates/default/ts/zudoku.config.tsx +0 -66
- package/dist/templates/zuplo/README-template.md +0 -7
- package/dist/templates/zuplo/gitignore +0 -32
- package/dist/templates/zuplo/pages/introduction.mdx +0 -129
- package/dist/templates/zuplo/pages/markdown.mdx +0 -103
- package/dist/templates/zuplo/public/banner-dark.svg +0 -100
- package/dist/templates/zuplo/public/banner.svg +0 -100
- package/dist/templates/zuplo/tsconfig.json +0 -16
- package/dist/templates/zuplo/zudoku.config.tsx +0 -89
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-zudoku",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-e95e2f88",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"react",
|
|
6
6
|
"zudoku"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"@types/validate-npm-package-name": "4.0.2",
|
|
29
29
|
"@vercel/ncc": "0.38.3",
|
|
30
30
|
"async-retry": "1.3.1",
|
|
31
|
-
"ci-info": "4.
|
|
31
|
+
"ci-info": "4.3.0",
|
|
32
32
|
"commander": "14.0.0",
|
|
33
33
|
"conf": "13.1.0",
|
|
34
34
|
"cross-spawn": "7.0.6",
|
|
35
|
-
"fast-glob": "3.3.
|
|
35
|
+
"fast-glob": "3.3.3",
|
|
36
36
|
"picocolors": "1.1.1",
|
|
37
37
|
"prompts": "2.4.2",
|
|
38
38
|
"tar": "7.4.3",
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Zudoku App
|
|
2
|
-
|
|
3
|
-
This Zudoku app that was created with [`create-zudoku`](https://zudoku.dev/docs).
|
|
4
|
-
|
|
5
|
-
## Getting Started
|
|
6
|
-
|
|
7
|
-
First, run the development server:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
npm run dev
|
|
11
|
-
# or
|
|
12
|
-
yarn dev
|
|
13
|
-
# or
|
|
14
|
-
pnpm dev
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
18
|
-
|
|
19
|
-
You can start editing the page by modifying `pages/intro.mdx`. You will see the content automatically update as you save the file.
|
|
20
|
-
|
|
21
|
-
## Learn More
|
|
22
|
-
|
|
23
|
-
To learn more about Zudoku, you can visit the [Zudoku documentation](https://zudoku.dev/docs).
|
|
24
|
-
|
|
25
|
-
To connect with the community join the [GitHub Discussions](https://github.com/zuplo/zudoku/discussions) or [Discord](https://discord.zudoku.dev).
|