@object-ui/create-plugin 3.3.0 → 3.3.1
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 +41 -0
- package/README.md +20 -1
- package/package.json +33 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# @object-ui/create-plugin
|
|
2
|
+
|
|
3
|
+
## 3.3.1
|
|
4
|
+
|
|
5
|
+
## 3.3.0
|
|
6
|
+
|
|
7
|
+
## 3.2.0
|
|
8
|
+
|
|
9
|
+
## 3.1.5
|
|
10
|
+
|
|
11
|
+
## 3.1.4
|
|
12
|
+
|
|
13
|
+
## 3.1.3
|
|
14
|
+
|
|
15
|
+
## 3.1.2
|
|
16
|
+
|
|
17
|
+
## 3.1.1
|
|
18
|
+
|
|
19
|
+
## 3.0.3
|
|
20
|
+
|
|
21
|
+
## 3.0.2
|
|
22
|
+
|
|
23
|
+
## 3.0.1
|
|
24
|
+
|
|
25
|
+
## 3.0.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
|
|
30
|
+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
|
|
31
|
+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
|
|
32
|
+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
|
|
33
|
+
- Added gzip + brotli pre-compression via vite-plugin-compression2
|
|
34
|
+
- Lazy MSW loading for build:server (~150 KB gzip saved)
|
|
35
|
+
- Added bundle analysis with rollup-plugin-visualizer
|
|
36
|
+
|
|
37
|
+
## 2.0.0
|
|
38
|
+
|
|
39
|
+
### Major Changes
|
|
40
|
+
|
|
41
|
+
- b859617: Release v1.0.0 — unify all package versions to 1.0.0
|
package/README.md
CHANGED
|
@@ -83,6 +83,25 @@ pnpm create @object-ui/plugin my-plugin --description "My awesome plugin" --auth
|
|
|
83
83
|
pnpm test
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
+
<!-- release-metadata:v3.3.0 -->
|
|
87
|
+
|
|
88
|
+
## Compatibility
|
|
89
|
+
|
|
90
|
+
- **Node.js:** ≥ 18
|
|
91
|
+
- **TypeScript:** ≥ 5.0 (strict mode)
|
|
92
|
+
- **`@objectstack/spec`:** ^3.3.0
|
|
93
|
+
- **`@objectstack/client`:** ^3.3.0
|
|
94
|
+
- **Tailwind CSS:** ≥ 3.4 (for packages with UI)
|
|
95
|
+
|
|
96
|
+
## Links
|
|
97
|
+
|
|
98
|
+
- 📚 [Documentation](https://www.objectui.org/docs/guide/plugin-development)
|
|
99
|
+
- 📦 [npm package](https://www.npmjs.com/package/@object-ui/create-plugin)
|
|
100
|
+
- 📝 [Changelog](./CHANGELOG.md)
|
|
101
|
+
- 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
|
|
102
|
+
- 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
|
|
103
|
+
- 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
|
|
104
|
+
|
|
86
105
|
## License
|
|
87
106
|
|
|
88
|
-
MIT
|
|
107
|
+
MIT — see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/create-plugin",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"description": "CLI tool to scaffold ObjectUI plugins",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,10 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"templates"
|
|
12
|
+
"templates",
|
|
13
|
+
"README.md",
|
|
14
|
+
"CHANGELOG.md",
|
|
15
|
+
"LICENSE"
|
|
13
16
|
],
|
|
14
17
|
"dependencies": {
|
|
15
18
|
"chalk": "^5.6.2",
|
|
@@ -22,8 +25,34 @@
|
|
|
22
25
|
"@types/node": "^25.6.0",
|
|
23
26
|
"@types/prompts": "^2.4.9",
|
|
24
27
|
"tsup": "^8.5.1",
|
|
25
|
-
"typescript": "^6.0.
|
|
26
|
-
"vitest": "^4.1.
|
|
28
|
+
"typescript": "^6.0.3",
|
|
29
|
+
"vitest": "^4.1.5"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"objectui",
|
|
33
|
+
"sdui",
|
|
34
|
+
"schema-driven-ui",
|
|
35
|
+
"react",
|
|
36
|
+
"tailwind",
|
|
37
|
+
"shadcn",
|
|
38
|
+
"objectstack",
|
|
39
|
+
"cli",
|
|
40
|
+
"scaffold",
|
|
41
|
+
"generator",
|
|
42
|
+
"plugin"
|
|
43
|
+
],
|
|
44
|
+
"author": "ObjectStack Team <team@objectstack.ai>",
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/objectstack-ai/objectui.git",
|
|
48
|
+
"directory": "packages/create-plugin"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/objectstack-ai/objectui/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://www.objectui.org/docs/guide/plugin-development",
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
27
56
|
},
|
|
28
57
|
"scripts": {
|
|
29
58
|
"build": "tsup",
|