@alloy-js/core 0.19.0-dev.3 → 0.19.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/CHANGELOG.md +22 -0
- package/dist/src/components/AppendFile.d.ts +90 -0
- package/dist/src/components/AppendFile.d.ts.map +1 -0
- package/dist/src/components/AppendFile.js +226 -0
- package/dist/src/components/CopyFile.d.ts +12 -0
- package/dist/src/components/CopyFile.d.ts.map +1 -0
- package/dist/src/components/CopyFile.js +15 -0
- package/dist/src/components/TemplateFile.d.ts +84 -0
- package/dist/src/components/TemplateFile.d.ts.map +1 -0
- package/dist/src/components/TemplateFile.js +133 -0
- package/dist/src/components/UpdateFile.d.ts +34 -0
- package/dist/src/components/UpdateFile.d.ts.map +1 -0
- package/dist/src/components/UpdateFile.js +66 -0
- package/dist/src/components/index.d.ts +4 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +4 -0
- package/dist/src/components/stc/index.d.ts +4 -0
- package/dist/src/components/stc/index.d.ts.map +1 -1
- package/dist/src/components/stc/index.js +4 -0
- package/dist/src/context/source-directory.d.ts +3 -3
- package/dist/src/context/source-directory.d.ts.map +1 -1
- package/dist/src/context/source-file.d.ts +4 -0
- package/dist/src/context/source-file.d.ts.map +1 -1
- package/dist/src/debug.d.ts.map +1 -1
- package/dist/src/debug.js +4 -1
- package/dist/src/host/alloy-host.browser.d.ts +11 -0
- package/dist/src/host/alloy-host.browser.d.ts.map +1 -0
- package/dist/src/host/alloy-host.browser.js +31 -0
- package/dist/src/host/alloy-host.d.ts +11 -0
- package/dist/src/host/alloy-host.d.ts.map +1 -0
- package/dist/src/host/alloy-host.js +143 -0
- package/dist/src/host/interface.d.ts +144 -0
- package/dist/src/host/interface.d.ts.map +1 -0
- package/dist/src/host/interface.js +1 -0
- package/dist/src/index.browser.d.ts +1 -1
- package/dist/src/index.browser.d.ts.map +1 -1
- package/dist/src/index.browser.js +2 -2
- package/dist/src/render.d.ts +10 -2
- package/dist/src/render.d.ts.map +1 -1
- package/dist/src/render.js +20 -1
- package/dist/src/resource.d.ts +80 -0
- package/dist/src/resource.d.ts.map +1 -0
- package/dist/src/resource.js +118 -0
- package/dist/src/scheduler.d.ts +6 -0
- package/dist/src/scheduler.d.ts.map +1 -1
- package/dist/src/scheduler.js +36 -0
- package/dist/src/write-output.d.ts +1 -1
- package/dist/src/write-output.d.ts.map +1 -1
- package/dist/src/write-output.js +40 -21
- package/dist/test/components/append-file.test.d.ts +2 -0
- package/dist/test/components/append-file.test.d.ts.map +1 -0
- package/dist/test/components/append-file.test.js +281 -0
- package/dist/test/components/copy-file.test.d.ts +2 -0
- package/dist/test/components/copy-file.test.d.ts.map +1 -0
- package/dist/test/components/copy-file.test.js +94 -0
- package/dist/test/components/source-file.test.d.ts.map +1 -1
- package/dist/test/components/template-file.test.d.ts +2 -0
- package/dist/test/components/template-file.test.d.ts.map +1 -0
- package/dist/test/components/template-file.test.js +133 -0
- package/dist/test/components/update-file.test.d.ts +2 -0
- package/dist/test/components/update-file.test.d.ts.map +1 -0
- package/dist/test/components/update-file.test.js +169 -0
- package/dist/test/rendering/formatting.test.d.ts.map +1 -1
- package/dist/testing/extend-expect.js +60 -54
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/components/AppendFile.tsx +294 -0
- package/src/components/CopyFile.tsx +29 -0
- package/src/components/TemplateFile.tsx +193 -0
- package/src/components/UpdateFile.tsx +86 -0
- package/src/components/index.tsx +4 -0
- package/src/components/stc/index.ts +4 -0
- package/src/context/source-directory.ts +5 -3
- package/src/context/source-file.ts +5 -0
- package/src/debug.ts +4 -1
- package/src/host/alloy-host.browser.ts +56 -0
- package/src/host/alloy-host.ts +160 -0
- package/src/host/interface.ts +153 -0
- package/src/index.browser.ts +1 -1
- package/src/render.ts +44 -5
- package/src/resource.ts +152 -0
- package/src/scheduler.ts +39 -0
- package/src/write-output.ts +49 -19
- package/temp/api.json +2009 -546
- package/test/components/append-file.test.tsx +275 -0
- package/test/components/copy-file.test.tsx +98 -0
- package/test/components/source-file.test.tsx +5 -2
- package/test/components/template-file.test.tsx +127 -0
- package/test/components/update-file.test.tsx +214 -0
- package/test/rendering/formatting.test.tsx +9 -3
- package/testing/extend-expect.ts +74 -58
- package/testing/vitest.d.ts +4 -0
- package/dist/src/write-output.browser.d.ts +0 -2
- package/dist/src/write-output.browser.d.ts.map +0 -1
- package/dist/src/write-output.browser.js +0 -4
- package/src/write-output.browser.ts +0 -4
package/src/write-output.ts
CHANGED
|
@@ -1,33 +1,63 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { dirname, relative, resolve } from "pathe";
|
|
2
|
+
import { AlloyHost } from "./host/alloy-host.js";
|
|
3
3
|
import { OutputDirectory } from "./render.js";
|
|
4
4
|
import { traverseOutput } from "./utils.js";
|
|
5
5
|
/**
|
|
6
6
|
* Write the output from {@link render} to the file system.
|
|
7
7
|
*
|
|
8
8
|
*/
|
|
9
|
-
export function writeOutput(
|
|
9
|
+
export async function writeOutput(
|
|
10
|
+
output: OutputDirectory,
|
|
11
|
+
basePath: string = "",
|
|
12
|
+
) {
|
|
13
|
+
const ops: Promise<void>[] = [];
|
|
14
|
+
|
|
10
15
|
traverseOutput(output, {
|
|
11
16
|
visitDirectory(directory) {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
ops.push(
|
|
18
|
+
(async () => {
|
|
19
|
+
const path = resolve(basePath, directory.path);
|
|
20
|
+
if (await AlloyHost.exists(path)) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
// eslint-disable-next-line no-console
|
|
24
|
+
console.log("create", relative(process.cwd(), path));
|
|
25
|
+
await AlloyHost.mkdir(path);
|
|
26
|
+
})(),
|
|
27
|
+
);
|
|
19
28
|
},
|
|
20
29
|
visitFile(file) {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
30
|
+
ops.push(
|
|
31
|
+
(async () => {
|
|
32
|
+
if ("contents" in file) {
|
|
33
|
+
const path = resolve(basePath, file.path);
|
|
34
|
+
if (await AlloyHost.exists(path)) {
|
|
35
|
+
// eslint-disable-next-line no-console
|
|
36
|
+
console.log("overwrite", relative(process.cwd(), path));
|
|
37
|
+
} else {
|
|
38
|
+
// eslint-disable-next-line no-console
|
|
39
|
+
console.log("create", relative(process.cwd(), path));
|
|
40
|
+
}
|
|
29
41
|
|
|
30
|
-
|
|
42
|
+
await AlloyHost.write(path, file.contents);
|
|
43
|
+
} else {
|
|
44
|
+
// copy file
|
|
45
|
+
const source = resolve(basePath, file.sourcePath);
|
|
46
|
+
const target = resolve(basePath, file.path);
|
|
47
|
+
if (await AlloyHost.exists(target)) {
|
|
48
|
+
// eslint-disable-next-line no-console
|
|
49
|
+
console.log("copy over", relative(process.cwd(), target));
|
|
50
|
+
} else {
|
|
51
|
+
// eslint-disable-next-line no-console
|
|
52
|
+
console.log("copy", relative(process.cwd(), target));
|
|
53
|
+
}
|
|
54
|
+
await AlloyHost.mkdir(dirname(target));
|
|
55
|
+
await AlloyHost.write(target, AlloyHost.read(source).stream());
|
|
56
|
+
}
|
|
57
|
+
})(),
|
|
58
|
+
);
|
|
31
59
|
},
|
|
32
60
|
});
|
|
61
|
+
|
|
62
|
+
return Promise.all(ops);
|
|
33
63
|
}
|