@akanjs/devkit 2.3.1-rc.2 → 2.3.1-rc.4
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/executors.test.ts +1 -7
- package/package.json +2 -2
package/executors.test.ts
CHANGED
|
@@ -152,13 +152,7 @@ describe("Executor filesystem helpers", () => {
|
|
|
152
152
|
const root = await makeTempRoot();
|
|
153
153
|
const exec = new Executor("fixture", root);
|
|
154
154
|
|
|
155
|
-
await exec.applyTemplate({
|
|
156
|
-
basePath: "app",
|
|
157
|
-
template: "app",
|
|
158
|
-
dict: { appName: "demo", companyName: "fixture", startDomain: "localhost" },
|
|
159
|
-
options: { libs: [] },
|
|
160
|
-
});
|
|
161
|
-
|
|
155
|
+
await exec.applyTemplate({ basePath: "app", template: "app", dict: { appName: "demo" }, options: { libs: [] } });
|
|
162
156
|
const templateRoot = path.resolve(import.meta.dir, "../cli/templates/app/public");
|
|
163
157
|
await expect(readFile(path.join(root, "app/public/logo.png"))).resolves.toEqual(
|
|
164
158
|
await readFile(path.join(templateRoot, "logo.png")),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/devkit",
|
|
3
|
-
"version": "2.3.1-rc.
|
|
3
|
+
"version": "2.3.1-rc.4",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@langchain/openai": "^1.4.6",
|
|
33
33
|
"@tailwindcss/node": "^4.3.0",
|
|
34
34
|
"@trapezedev/project": "^7.1.4",
|
|
35
|
-
"akanjs": "2.3.1-rc.
|
|
35
|
+
"akanjs": "2.3.1-rc.4",
|
|
36
36
|
"chalk": "^5.6.2",
|
|
37
37
|
"commander": "^14.0.3",
|
|
38
38
|
"daisyui": "^5.5.20",
|