@osdk/widget.vite-plugin 3.3.0-rc.15 → 3.3.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 +33 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @osdk/widget.vite-plugin
|
|
2
2
|
|
|
3
|
+
## 3.3.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7901ae0: Simulated release
|
|
8
|
+
- 1940934: Support extension-less widget config import and improve reporting when config files not found
|
|
9
|
+
- e6a96c0: Validate widget sets before building their manifest
|
|
10
|
+
- cc33fec: improve dev mode error surfacing
|
|
11
|
+
- 5bd88fc: Fix InvalidDevModeFilePath errors
|
|
12
|
+
- 27f2122: warn when using wrong dev command
|
|
13
|
+
- 54e674e: Fix widget dev mode with tailwind causing project imports
|
|
14
|
+
- edb062f: Propagate validation error cause in message for widget config validation
|
|
15
|
+
- e95637e: Fix Windows dev mode
|
|
16
|
+
- 953c649: Use Vite logger instead of console.warn in validateDevEnvironment
|
|
17
|
+
- af4f3bf: Remove the following features for RC:
|
|
18
|
+
- Property formatting
|
|
19
|
+
- Branching
|
|
20
|
+
- Constant RDPs
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [322c5bc]
|
|
23
|
+
- Updated dependencies [7901ae0]
|
|
24
|
+
- Updated dependencies [baf1e30]
|
|
25
|
+
- Updated dependencies [4d37e98]
|
|
26
|
+
- Updated dependencies [af4f3bf]
|
|
27
|
+
- @osdk/foundry-config-json@1.5.0
|
|
28
|
+
- @osdk/widget.api@3.3.0
|
|
29
|
+
|
|
30
|
+
## 3.3.0-rc.16
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- @osdk/widget.api@3.3.0-rc.16
|
|
35
|
+
|
|
3
36
|
## 3.3.0-rc.15
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/widget.vite-plugin",
|
|
3
|
-
"version": "3.3.0
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "A vite plugin that will extract parameter definitions from TS/JS files + entrypoint info into a manifest file to be uploaded to Foundry ",
|
|
5
5
|
"access": "public",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"picocolors": "^1.1.1",
|
|
31
31
|
"resolve-package-path": "^4.0.3",
|
|
32
32
|
"sirv": "^3.0.2",
|
|
33
|
-
"@osdk/widget.api": "~3.3.0
|
|
34
|
-
"@osdk/foundry-config-json": "~1.5.0
|
|
33
|
+
"@osdk/widget.api": "~3.3.0",
|
|
34
|
+
"@osdk/foundry-config-json": "~1.5.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"vite": "^6.3.5"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"typescript": "~5.5.4",
|
|
50
50
|
"vite": "^6.3.6",
|
|
51
51
|
"vitest": "^3.2.4",
|
|
52
|
-
"@osdk/monorepo.
|
|
53
|
-
"@osdk/monorepo.
|
|
52
|
+
"@osdk/monorepo.tsconfig": "~0.5.0",
|
|
53
|
+
"@osdk/monorepo.api-extractor": "~0.5.0"
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|