@quilted/create 0.0.0-react-query-graphql-20220409003957
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/CHANGELOG.md +25 -0
- package/bin/create-quilt.mjs +2 -0
- package/build/cjs/index.cjs +6740 -0
- package/build/esm/index.mjs +6710 -0
- package/build/tsconfig.tsbuildinfo +1 -0
- package/build/typescript/create.d.ts +2 -0
- package/build/typescript/create.d.ts.map +1 -0
- package/build/typescript/index.d.ts +2 -0
- package/build/typescript/index.d.ts.map +1 -0
- package/package.json +32 -0
- package/quilt.project.ts +7 -0
- package/src/create.ts +396 -0
- package/src/index.ts +1 -0
- package/templates/app/App.tsx +15 -0
- package/templates/app/features/Start/Start.module.css +3 -0
- package/templates/app/features/Start/Start.tsx +5 -0
- package/templates/app/features/Start/index.ts +1 -0
- package/templates/app/foundation/Head.tsx +32 -0
- package/templates/app/foundation/Http.tsx +104 -0
- package/templates/app/foundation/Routes.tsx +7 -0
- package/templates/app/package.json +21 -0
- package/templates/app/quilt.project.ts +6 -0
- package/templates/app/shared/types.ts +1 -0
- package/templates/app/tsconfig.json +12 -0
- package/templates/package/build/cjs/index.cjs +2 -0
- package/templates/package/build/esm/index.mjs +1 -0
- package/templates/package/build/esnext/index.esnext +1 -0
- package/templates/package/package.json +40 -0
- package/templates/package/quilt.project.ts +6 -0
- package/templates/package/source/index.ts +1 -0
- package/templates/package/tsconfig.json +10 -0
- package/templates/workspace/_gitignore +13 -0
- package/templates/workspace/_prettierignore +7 -0
- package/templates/workspace/package.json +30 -0
- package/templates/workspace/pnpm-workspace.yaml +3 -0
- package/templates/workspace/quilt.workspace.ts +5 -0
- package/templates/workspace/tsconfig.json +8 -0
- package/tsconfig.json +10 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @quilted/create
|
|
2
|
+
|
|
3
|
+
## 0.0.0-react-query-graphql-20220409003957
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b8e9f0ec`](https://github.com/lemonmade/quilt/commit/b8e9f0ec6901660ae70ecc256da70f887d8ab1d2) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix some template tsconfigs
|
|
8
|
+
|
|
9
|
+
## 0.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`c49aa7dc`](https://github.com/lemonmade/quilt/commit/c49aa7dc3cf8e3f4b82a529cd74967a2155d7746) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix workspace pnpm template files
|
|
14
|
+
|
|
15
|
+
## 0.1.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [`e4e7cc23`](https://github.com/lemonmade/quilt/commit/e4e7cc23e50a55831c24e9b8f5df4e9dd6d6c36b) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix create package to recursively create directories
|
|
20
|
+
|
|
21
|
+
## 0.1.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [`dea9f232`](https://github.com/lemonmade/quilt/commit/dea9f232e760f783114b9b5e9855b2b995b2e90e) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix @quilted/create workspace
|