@studiocms/html 0.1.0-beta.26 → 0.1.0-beta.27
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/README.md +2 -0
- package/dist/lib/shared.d.ts +1 -1
- package/dist/lib/shared.js +2 -2
- package/package.json +5 -4
package/README.md
CHANGED
package/dist/lib/shared.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare const symbol: symbol;
|
|
|
5
5
|
* initialized as a new object with a `htmlConfig` property.
|
|
6
6
|
*
|
|
7
7
|
* @remarks
|
|
8
|
-
* The `@ts-
|
|
8
|
+
* The `@ts-expect-error` comments are used to suppress TypeScript errors related to the use of
|
|
9
9
|
* the global scope and assignment within expressions. The `biome-ignore` comment is used
|
|
10
10
|
* to suppress linting errors for the same reason.
|
|
11
11
|
*/
|
package/dist/lib/shared.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const symbol = Symbol.for("@studiocms/html");
|
|
2
2
|
const shared = (
|
|
3
|
-
// @ts-
|
|
4
|
-
globalThis[symbol] || // @ts-
|
|
3
|
+
// @ts-expect-error
|
|
4
|
+
globalThis[symbol] || // @ts-expect-error
|
|
5
5
|
// biome-ignore lint/suspicious/noAssignInExpressions: This is a valid use case for assignment in expressions.
|
|
6
6
|
(globalThis[symbol] = {
|
|
7
7
|
htmlConfig: void 0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studiocms/html",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.27",
|
|
4
4
|
"description": "Add HTML Support to your StudioCMS project with ease!",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "withstudiocms",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"astro-integration-kit": "^0.19.0",
|
|
61
61
|
"codemirror": "5.65.19",
|
|
62
62
|
"katex": "^0.16.22",
|
|
63
|
-
"suneditor": "^2.47.
|
|
63
|
+
"suneditor": "^2.47.8"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/codemirror": "5.60.16",
|
|
@@ -68,13 +68,14 @@
|
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"astro": "^5.12.9",
|
|
71
|
-
"effect": "^3.17.
|
|
71
|
+
"effect": "^3.17.14",
|
|
72
72
|
"vite": "^6.3.4",
|
|
73
|
-
"studiocms": "0.1.0-beta.
|
|
73
|
+
"studiocms": "0.1.0-beta.27"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
|
76
76
|
"build": "buildkit build 'src/**/*.{ts,astro,css,json,png,d.ts}'",
|
|
77
77
|
"dev": "buildkit dev 'src/**/*.{ts,astro,css,json,png,d.ts}'",
|
|
78
|
+
"test": "vitest",
|
|
78
79
|
"typecheck": "tspc -p tsconfig.tspc.json"
|
|
79
80
|
}
|
|
80
81
|
}
|