@tanstack/cta-framework-solid 0.34.3 → 0.34.5
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 +2 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/index.ts +2 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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';
|
|
4
|
+
import { contentChecksum } from './checksum.js';
|
|
5
5
|
export function createFrameworkDefinition() {
|
|
6
6
|
const baseDirectory = dirname(dirname(fileURLToPath(import.meta.url)));
|
|
7
7
|
const addOns = scanAddOnDirectories([
|
|
@@ -32,6 +32,7 @@ export function createFrameworkDefinition() {
|
|
|
32
32
|
forceTypescript: true,
|
|
33
33
|
},
|
|
34
34
|
},
|
|
35
|
+
contentChecksum,
|
|
35
36
|
};
|
|
36
37
|
}
|
|
37
38
|
export function register() {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { contentChecksum } from './checksum';
|
|
1
|
+
import { contentChecksum } from './checksum.js';
|
|
2
2
|
import type { FrameworkDefinition } from '@tanstack/cta-engine';
|
|
3
3
|
export declare function createFrameworkDefinition(): FrameworkDefinition;
|
|
4
4
|
export declare function register(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/cta-framework-solid",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.5",
|
|
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.34.
|
|
25
|
+
"@tanstack/cta-engine": "0.34.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^24.6.0",
|
package/src/index.ts
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
scanProjectDirectory,
|
|
8
8
|
} from '@tanstack/cta-engine'
|
|
9
9
|
|
|
10
|
-
import { contentChecksum } from './checksum'
|
|
10
|
+
import { contentChecksum } from './checksum.js'
|
|
11
11
|
|
|
12
12
|
import type { FrameworkDefinition } from '@tanstack/cta-engine'
|
|
13
13
|
|
|
@@ -47,6 +47,7 @@ export function createFrameworkDefinition(): FrameworkDefinition {
|
|
|
47
47
|
forceTypescript: true,
|
|
48
48
|
},
|
|
49
49
|
},
|
|
50
|
+
contentChecksum,
|
|
50
51
|
}
|
|
51
52
|
}
|
|
52
53
|
|