@geenius/docs 0.9.0 → 0.11.0
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 +12 -0
- package/package.json +7 -7
- package/packages/react/dist/index.js +201 -148
- package/packages/react/dist/index.js.map +1 -1
- package/packages/react-css/dist/index.css +30 -18
- package/packages/react-css/dist/index.css.map +1 -1
- package/packages/shared/dist/index.d.ts +49 -4
- package/packages/shared/dist/index.js +51 -5
- package/packages/shared/dist/index.js.map +1 -1
- package/packages/solidjs/dist/index.js +190 -143
- package/packages/solidjs/dist/index.js.map +1 -1
- package/packages/solidjs-css/dist/index.css +30 -18
- package/packages/solidjs-css/dist/index.css.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Bring package to A+++ golden-standard compliance with full documentation, cleanup, and structural alignment.
|
|
8
|
+
|
|
9
|
+
## 0.10.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Bring package to A+++ golden-standard compliance with full documentation, cleanup, and structural alignment.
|
|
14
|
+
|
|
3
15
|
## 0.9.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geenius/docs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Geenius Docs — Provider-based documentation primitives and Storybook review apps for React, SolidJS, and Convex.",
|
|
6
6
|
"author": "Mehdi Nabhani",
|
|
@@ -33,14 +33,13 @@
|
|
|
33
33
|
"CHANGELOG.md"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
+
"@geenius/motion": "^0.10.0",
|
|
36
37
|
"clsx": "^2.1.1",
|
|
37
38
|
"gray-matter": "^4.0.3",
|
|
38
39
|
"react-markdown": "^10.1.0",
|
|
39
40
|
"remark-gfm": "^4.0.1",
|
|
40
41
|
"solid-markdown": "^2.1.1",
|
|
41
|
-
"tailwind-merge": "^3.4.0"
|
|
42
|
-
"@geenius/motion": "0.9.0",
|
|
43
|
-
"@geenius/tools": "0.8.10"
|
|
42
|
+
"tailwind-merge": "^3.4.0"
|
|
44
43
|
},
|
|
45
44
|
"peerDependencies": {
|
|
46
45
|
"convex": ">=1.34.0",
|
|
@@ -63,6 +62,7 @@
|
|
|
63
62
|
}
|
|
64
63
|
},
|
|
65
64
|
"devDependencies": {
|
|
65
|
+
"@geenius/storybook": "^0.9.0",
|
|
66
66
|
"@playwright/test": "^1.59.1",
|
|
67
67
|
"@solidjs/testing-library": "^0.8.10",
|
|
68
68
|
"@storybook/test": "^8.6.14",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"react-dom": "^19.2.5",
|
|
79
79
|
"solid-js": "^1.9.12",
|
|
80
80
|
"typescript": "~6.0.2",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
81
|
+
"vite-plugin-solid": "^2.11.12",
|
|
82
|
+
"vitest": "^4.1.4"
|
|
83
83
|
},
|
|
84
84
|
"engines": {
|
|
85
85
|
"node": ">=22.0.0"
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"build": "pnpm --filter ./packages/shared build && pnpm -r --filter './packages/*' --filter '!./packages/shared' build",
|
|
154
154
|
"lint": "pnpm exec biome check package.json vitest.config.ts __tests__ packages && pnpm --filter ./packages/shared type-check && pnpm -r --filter './packages/*' --filter '!./packages/shared' type-check",
|
|
155
155
|
"type-check": "pnpm --filter ./packages/shared type-check && pnpm -r --filter './packages/*' --filter '!./packages/shared' type-check",
|
|
156
|
-
"test:unit": "pnpm -r --filter './packages/*' test && vitest run __tests__/parity.test.ts",
|
|
156
|
+
"test:unit": "pnpm -r --filter './packages/*' test && vitest run __tests__/parity.test.ts __tests__/convex-docs.test.ts",
|
|
157
157
|
"test:exports": "vitest run __tests__/exports.test.ts --passWithNoTests",
|
|
158
158
|
"test:dist-contract": "vitest run __tests__/dist-contract.test.ts --passWithNoTests",
|
|
159
159
|
"test:types": "pnpm exec tsc -p tsconfig.type-tests.json --noEmit && npm_config_cache=/tmp/.npm-cache attw --pack --ignore-rules cjs-resolves-to-esm",
|