@proofkit/cli 1.0.0 → 1.1.6
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 +20 -0
- package/dist/index.js +16384 -275
- package/package.json +15 -14
- package/template/nextjs/.prettierrc +3 -0
- package/template/nextjs/components.json +21 -0
- package/template/nextjs/package.json +3 -3
- package/template/nextjs/postcss.config.cjs +1 -0
- package/template/nextjs/proofkit.json +6 -1
- package/template/nextjs/src/config/theme/globals.css +124 -0
- package/template/nextjs/src/utils/styles.ts +6 -0
- package/template/pages/nextjs/table-edit/actions.ts +3 -2
- package/template/pages/nextjs/table-infinite/actions.ts +5 -5
- package/template/pages/nextjs/table-infinite-edit/actions.ts +6 -6
- package/template/vite-wv/.prettierrc +3 -0
- package/template/vite-wv/components.json +21 -0
- package/template/vite-wv/postcss.config.cjs +1 -0
- package/template/vite-wv/proofkit.json +6 -1
- package/template/vite-wv/src/config/theme/globals.css +124 -0
- package/template/vite-wv/src/utils/styles.ts +6 -0
- package/dist/acorn-AKFTBDM6.js +0 -15
- package/dist/angular-BOQ6FHSU.js +0 -2
- package/dist/babel-ZTOORN7K.js +0 -15
- package/dist/chunk-4LISTI44.js +0 -1
- package/dist/estree-KOJPX4S6.js +0 -36
- package/dist/flow-RCI44GYZ.js +0 -19
- package/dist/glimmer-GV5EF5E4.js +0 -30
- package/dist/graphql-YXQNPQWM.js +0 -29
- package/dist/html-ZAJTRROK.js +0 -22
- package/dist/markdown-Q75DTQI7.js +0 -63
- package/dist/meriyah-32K7GBV5.js +0 -4
- package/dist/postcss-WWYO4PGL.js +0 -54
- package/dist/typescript-M6N7JDNQ.js +0 -20
- package/dist/yaml-LY7PNAYV.js +0 -161
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @proofgeist/kit
|
|
2
2
|
|
|
3
|
+
## 1.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Run typegen code directly instead of via execa
|
|
8
|
+
- error trap around formatting
|
|
9
|
+
- Remove shared-utils dep
|
|
10
|
+
|
|
11
|
+
## 1.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 7429a1e: Add simultaneous support for Shadcn. New projects will have Shadcn initialized automatically, and the upgrade command will offer to automatically add support for Shadcn to an existing ProofKit project.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- b483d67: Update formatting after typegen to be more consistent
|
|
20
|
+
- f0ddde2: Upgrade next-safe-action to v8 (and related dependencies)
|
|
21
|
+
- 7c87649: Fix getFieldNamesForSchema function
|
|
22
|
+
|
|
3
23
|
## 1.0.0
|
|
4
24
|
|
|
5
25
|
### Major Changes
|