@cluesurf/form 0.5.6 → 0.5.8
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/host/make/index.js +2 -2
- package/package.json +1 -1
package/host/make/index.js
CHANGED
|
@@ -51,7 +51,7 @@ export default function make(_a) {
|
|
|
51
51
|
const base = [
|
|
52
52
|
`import { z } from 'zod'`,
|
|
53
53
|
`import { LOAD, MAKE, TEST } from '@cluesurf/form'`,
|
|
54
|
-
`import * as code from '${testLink}.
|
|
54
|
+
`import * as code from '${testLink}.ts'`,
|
|
55
55
|
``,
|
|
56
56
|
...makeLoadList(hold, file),
|
|
57
57
|
...list,
|
|
@@ -78,7 +78,7 @@ function makeLoadList(hold, file) {
|
|
|
78
78
|
}
|
|
79
79
|
for (const file in hash) {
|
|
80
80
|
const list = hash[file];
|
|
81
|
-
text.push(`import { ${list.sort().join(', ')} } from '${file}.
|
|
81
|
+
text.push(`import { ${list.sort().join(', ')} } from '${file}.ts'`);
|
|
82
82
|
}
|
|
83
83
|
text.push(``);
|
|
84
84
|
return text;
|