@tanstack/cta-framework-solid 0.43.0 → 0.44.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/dist/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import { dirname, join } from 'node:path';
2
2
  import { fileURLToPath } from 'node:url';
3
3
  import { registerFramework, scanAddOnDirectories, scanProjectDirectory, } from '@tanstack/cta-engine';
4
- import { contentChecksum } from './checksum.js';
5
4
  export function createFrameworkDefinition() {
6
5
  const baseDirectory = dirname(dirname(fileURLToPath(import.meta.url)));
7
6
  const addOns = scanAddOnDirectories([
@@ -32,10 +31,8 @@ export function createFrameworkDefinition() {
32
31
  forceTypescript: true,
33
32
  },
34
33
  },
35
- contentChecksum,
36
34
  };
37
35
  }
38
36
  export function register() {
39
37
  registerFramework(createFrameworkDefinition());
40
38
  }
41
- export { contentChecksum };
@@ -1,5 +1,3 @@
1
- import { contentChecksum } from './checksum.js';
2
1
  import type { FrameworkDefinition } from '@tanstack/cta-engine';
3
2
  export declare function createFrameworkDefinition(): FrameworkDefinition;
4
3
  export declare function register(): void;
5
- export { contentChecksum };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cta-framework-solid",
3
- "version": "0.43.0",
3
+ "version": "0.44.0",
4
4
  "description": "CTA Framework for Solid",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "author": "Jack Herrington <jherr@pobox.com>",
23
23
  "license": "MIT",
24
24
  "dependencies": {
25
- "@tanstack/cta-engine": "0.43.0"
25
+ "@tanstack/cta-engine": "0.44.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "^24.6.0",
@@ -30,7 +30,6 @@
30
30
  "vitest": "^3.1.1"
31
31
  },
32
32
  "scripts": {
33
- "prebuild": "node ../../scripts/generate-checksums.js",
34
33
  "build": "tsc",
35
34
  "dev": "tsc --watch",
36
35
  "test": "eslint ./src && vitest run",
package/src/index.ts CHANGED
@@ -7,8 +7,6 @@ import {
7
7
  scanProjectDirectory,
8
8
  } from '@tanstack/cta-engine'
9
9
 
10
- import { contentChecksum } from './checksum.js'
11
-
12
10
  import type { FrameworkDefinition } from '@tanstack/cta-engine'
13
11
 
14
12
  export function createFrameworkDefinition(): FrameworkDefinition {
@@ -47,12 +45,9 @@ export function createFrameworkDefinition(): FrameworkDefinition {
47
45
  forceTypescript: true,
48
46
  },
49
47
  },
50
- contentChecksum,
51
48
  }
52
49
  }
53
50
 
54
51
  export function register() {
55
52
  registerFramework(createFrameworkDefinition())
56
53
  }
57
-
58
- export { contentChecksum }
package/dist/checksum.js DELETED
@@ -1,3 +0,0 @@
1
- // This file is auto-generated. Do not edit manually.
2
- // Generated from add-ons, examples, hosts, project, and toolchains directories
3
- export const contentChecksum = '8d5d5394c68403b640e96cc9d2ee063fb60a2e1e84649644905934cad6226447';
@@ -1 +0,0 @@
1
- export declare const contentChecksum = "8d5d5394c68403b640e96cc9d2ee063fb60a2e1e84649644905934cad6226447";
package/src/checksum.ts DELETED
@@ -1,3 +0,0 @@
1
- // This file is auto-generated. Do not edit manually.
2
- // Generated from add-ons, examples, hosts, project, and toolchains directories
3
- export const contentChecksum = '8d5d5394c68403b640e96cc9d2ee063fb60a2e1e84649644905934cad6226447'