@xyd-js/content 0.0.0-build-dbd54a4-20251226154152 → 0.0.0-build-6e6f290-20260116222509
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 +7 -7
- package/dist/vite.d.ts +5 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# @xyd-js/content
|
|
2
2
|
|
|
3
|
-
## 0.0.0-build-
|
|
3
|
+
## 0.0.0-build-6e6f290-20260116222509
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- update all packages
|
|
8
8
|
- Updated dependencies
|
|
9
|
-
- @xyd-js/components@0.0.0-build-
|
|
10
|
-
- @xyd-js/context@0.0.0-build-
|
|
11
|
-
- @xyd-js/core@0.0.0-build-
|
|
12
|
-
- @xyd-js/gql@0.0.0-build-
|
|
13
|
-
- @xyd-js/openapi@0.0.0-build-
|
|
14
|
-
- @xyd-js/sources@0.0.0-build-
|
|
9
|
+
- @xyd-js/components@0.0.0-build-6e6f290-20260116222509
|
|
10
|
+
- @xyd-js/context@0.0.0-build-6e6f290-20260116222509
|
|
11
|
+
- @xyd-js/core@0.0.0-build-6e6f290-20260116222509
|
|
12
|
+
- @xyd-js/gql@0.0.0-build-6e6f290-20260116222509
|
|
13
|
+
- @xyd-js/openapi@0.0.0-build-6e6f290-20260116222509
|
|
14
|
+
- @xyd-js/sources@0.0.0-build-6e6f290-20260116222509
|
package/dist/vite.d.ts
CHANGED
|
@@ -541,7 +541,8 @@ type PluginHooks = {
|
|
|
541
541
|
};
|
|
542
542
|
|
|
543
543
|
interface OutputPlugin
|
|
544
|
-
extends
|
|
544
|
+
extends
|
|
545
|
+
Partial<{ [K in OutputPluginHooks]: PluginHooks[K] }>,
|
|
545
546
|
Partial<Record<AddonHooks, ObjectHook<AddonHook>>> {
|
|
546
547
|
cacheKey?: string | undefined;
|
|
547
548
|
name: string;
|
|
@@ -597,8 +598,9 @@ interface NormalizedTreeshakingOptions {
|
|
|
597
598
|
unknownGlobalSideEffects: boolean;
|
|
598
599
|
}
|
|
599
600
|
|
|
600
|
-
interface TreeshakingOptions
|
|
601
|
-
|
|
601
|
+
interface TreeshakingOptions extends Partial<
|
|
602
|
+
Omit<NormalizedTreeshakingOptions, 'moduleSideEffects'>
|
|
603
|
+
> {
|
|
602
604
|
moduleSideEffects?: ModuleSideEffectsOption | undefined;
|
|
603
605
|
preset?: TreeshakingPreset | undefined;
|
|
604
606
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyd-js/content",
|
|
3
|
-
"version": "0.0.0-build-
|
|
3
|
+
"version": "0.0.0-build-6e6f290-20260116222509",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"unist-util-visit": "^5.0.0",
|
|
39
39
|
"vfile": "^6.0.3",
|
|
40
40
|
"vfile-matter": "^5.0.1",
|
|
41
|
-
"@xyd-js/context": "0.0.0-build-
|
|
42
|
-
"@xyd-js/core": "0.0.0-build-
|
|
43
|
-
"@xyd-js/gql": "0.0.0-build-
|
|
44
|
-
"@xyd-js/openapi": "0.0.0-build-
|
|
45
|
-
"@xyd-js/sources": "0.0.0-build-
|
|
41
|
+
"@xyd-js/context": "0.0.0-build-6e6f290-20260116222509",
|
|
42
|
+
"@xyd-js/core": "0.0.0-build-6e6f290-20260116222509",
|
|
43
|
+
"@xyd-js/gql": "0.0.0-build-6e6f290-20260116222509",
|
|
44
|
+
"@xyd-js/openapi": "0.0.0-build-6e6f290-20260116222509",
|
|
45
|
+
"@xyd-js/sources": "0.0.0-build-6e6f290-20260116222509"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@xyd-js/components": "0.0.0-build-
|
|
48
|
+
"@xyd-js/components": "0.0.0-build-6e6f290-20260116222509"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^22.14.1",
|