@absolutejs/absolute 0.19.0-beta.210 → 0.19.0-beta.212

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.
@@ -32,7 +32,7 @@ export type RobotsDirective = {
32
32
  export type MetaTag = {
33
33
  name?: string;
34
34
  property?: string;
35
- httpEquiv?: string;
35
+ httpEquiv?: 'accept-ch' | 'content-security-policy' | 'content-type' | 'default-style' | 'refresh' | 'x-ua-compatible';
36
36
  content: string;
37
37
  };
38
38
  export type Metadata = {
package/package.json CHANGED
@@ -39,6 +39,7 @@
39
39
  "react-dom": "19.2.1",
40
40
  "react-refresh": "0.18.0",
41
41
  "svelte": "5.55.0",
42
+ "svelte-check": "^4.4.5",
42
43
  "tailwindcss": "4.1.7",
43
44
  "typescript": "^5.9.3",
44
45
  "typescript-eslint": "8.56.1",
@@ -214,8 +215,8 @@
214
215
  "release:beta": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh --tag beta && bun publish --tag beta",
215
216
  "start": "TELEMETRY_OFF=1 bun run src/cli/index.ts start example/server.ts --outdir example/dist --config example/absolute.config.ts",
216
217
  "test": "bun test tests/unit && bun test --concurrency 1 tests/integration",
217
- "typecheck": "bun run vue-tsc --noEmit"
218
+ "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
218
219
  },
219
220
  "types": "./dist/src/index.d.ts",
220
- "version": "0.19.0-beta.210"
221
+ "version": "0.19.0-beta.212"
221
222
  }
package/types/metadata.ts CHANGED
@@ -35,7 +35,7 @@ export type RobotsDirective = {
35
35
  export type MetaTag = {
36
36
  name?: string;
37
37
  property?: string;
38
- httpEquiv?: string;
38
+ httpEquiv?: 'accept-ch' | 'content-security-policy' | 'content-type' | 'default-style' | 'refresh' | 'x-ua-compatible';
39
39
  content: string;
40
40
  };
41
41