@studiocms/html 0.1.0-beta.30 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +6 -4
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ function studiocmsHTML(options) {
15
15
  name: "StudioCMS HTML",
16
16
  studiocmsMinimumVersion: "0.1.0-beta.21",
17
17
  hooks: {
18
- "studiocms:astro:config": ({ addIntegrations }) => {
18
+ "studiocms:astro-config": ({ addIntegrations }) => {
19
19
  addIntegrations({
20
20
  name: packageIdentifier,
21
21
  hooks: {
@@ -25,7 +25,7 @@ function studiocmsHTML(options) {
25
25
  }
26
26
  });
27
27
  },
28
- "studiocms:config:setup": ({ setRendering }) => {
28
+ "studiocms:rendering": ({ setRendering }) => {
29
29
  setRendering({
30
30
  pageTypes: [
31
31
  // Define the HTML page type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studiocms/html",
3
- "version": "0.1.0-beta.30",
3
+ "version": "0.1.0",
4
4
  "description": "Add HTML Support to your StudioCMS project with ease!",
5
5
  "author": {
6
6
  "name": "withstudiocms",
@@ -62,7 +62,7 @@
62
62
  "dependencies": {
63
63
  "astro-integration-kit": "^0.19.1",
64
64
  "codemirror": "5.65.19",
65
- "katex": "^0.16.25",
65
+ "katex": "^0.16.27",
66
66
  "suneditor": "^2.47.8"
67
67
  },
68
68
  "devDependencies": {
@@ -71,14 +71,16 @@
71
71
  },
72
72
  "peerDependencies": {
73
73
  "astro": "^5.12.9",
74
- "effect": "^3.19.2",
74
+ "effect": "^3.19.14",
75
75
  "vite": "^6.3.4",
76
- "studiocms": "0.1.0-beta.30"
76
+ "studiocms": "0.1.0"
77
77
  },
78
78
  "scripts": {
79
79
  "build": "buildkit build 'src/**/*.{ts,astro,css,json,png,d.ts}'",
80
80
  "dev": "buildkit dev 'src/**/*.{ts,astro,css,json,png,d.ts}'",
81
81
  "test": "vitest",
82
+ "effect-check": "pnpm effect-language-service diagnostics --project tsconfig.tspc.json",
83
+ "ci:effect-check": "pnpm effect-check --format github-actions",
82
84
  "typecheck": "tspc -p tsconfig.tspc.json"
83
85
  }
84
86
  }