Problem: the hexagonal refactor churns the backend tree for nine more phases; the UI delivery stack (web/ SPA, cmd/desktop Wails wrapper, compose/web image) must move to its own repo first so doc/layout rewrites land once on a backend-only tree. Change: - New repo git.hubris.network/dtoro/oikos-web (v0.33.0): web/, desktop/ (updateURL repointed to oikos-web releases), compose/, own CI (web + desktop jobs), own deploy script (CI-green gate, TOCTOU guard, version-tagged images, prune-to-3), own webhook receiver on :9798 + launchd unit, own compose project publishing the same 8091:80. - Cutover executed on mac-mini in order: oikos stack's web service stopped+removed, oikos-web project brought up on 8091; outer Caddy untouched (targets the published port) — serving + Authentik flow + /wails 404 quirk verified post-cutover. - Stripped from oikos: web/, cmd/desktop/, compose/web/, desktop CI workflow, ci.yml web job, Makefile ui/desktop/desktop-package/install targets, the compose web service, oikos-web from deploy.sh's fallback prune list; wails + go-keyring dropped from go.mod, vendor synced. - README / CONTRIBUTING / AGENTS.md / .agents dev+operations docs now point at the new repo; mbse + mascot design docs carry a path note. Risk: production SPA serving depends on the new pipeline now; rollback is versioned-image re-up of the old web service from a pre-split checkout (port 8091). Desktop builds installed before the split still check dtoro/oikos releases — one manual reinstall, noted in the oikos-web release notes. Verification: go vet, make test (race), make generate-check, golangci (no new findings; baseline down 400→365); post-cutover curls — localhost:8091 200, /wails/runtime.js 404, outer Caddy 302 Authentik.
134 lines
3.4 KiB
JavaScript
134 lines
3.4 KiB
JavaScript
#!/usr/bin/env zx
|
|
|
|
import { $, fs, glob } from "zx";
|
|
import { ast_grep } from "./ast_grep.js";
|
|
import { errors } from "./errors.js";
|
|
import { root } from "./utils.js";
|
|
|
|
// clear generated content
|
|
await Promise.all([
|
|
fs.remove(root("cjs")),
|
|
fs.remove(root("_")),
|
|
fs.remove(root("src")),
|
|
]);
|
|
|
|
let modules = await glob("*.js", { cwd: root("esm") });
|
|
|
|
const task_queue = [];
|
|
|
|
const NO_MODIFY = [
|
|
"/* This file is automatically generated and should not be manually edited. */",
|
|
"/* To modify this file, please run the `npm run build` command instead. */",
|
|
];
|
|
|
|
// generate index.js
|
|
const indexESM = [...NO_MODIFY, ""];
|
|
|
|
const indexCJS = [`"use strict";`, "", ...NO_MODIFY, ""];
|
|
|
|
const cjs_export_list = [];
|
|
const cjs_module_lexer = [];
|
|
|
|
const main_package_json = fs.readJSONSync(root("package.json"));
|
|
|
|
main_package_json.exports = {
|
|
"./package.json": "./package.json",
|
|
"./esm/*": "./esm/*",
|
|
"./cjs/*": "./cjs/*",
|
|
"./src/*": "./src/*",
|
|
".": {
|
|
"module-sync": "./esm/index.js",
|
|
webpack: "./esm/index.js",
|
|
import: "./esm/index.js",
|
|
default: "./cjs/index.cjs",
|
|
},
|
|
"./_": {
|
|
"module-sync": "./esm/index.js",
|
|
webpack: "./esm/index.js",
|
|
import: "./esm/index.js",
|
|
default: "./cjs/index.cjs",
|
|
},
|
|
};
|
|
|
|
modules.forEach((p) => {
|
|
const importBinding = p.slice(0, -3);
|
|
|
|
main_package_json.exports[`./_/${importBinding}`] = {
|
|
"module-sync": `./esm/${importBinding}.js`,
|
|
webpack: `./esm/${importBinding}.js`,
|
|
import: `./esm/${importBinding}.js`,
|
|
default: `./cjs/${importBinding}.cjs`,
|
|
};
|
|
|
|
const alias_package = {
|
|
main: `../../cjs/${importBinding}.cjs`,
|
|
module: `../../esm/${importBinding}.js`,
|
|
};
|
|
task_queue.push(
|
|
fs.outputJSON(root("_", importBinding, "package.json"), alias_package, {
|
|
encoding: "utf-8",
|
|
spaces: 4,
|
|
}),
|
|
);
|
|
|
|
if (importBinding === "index") {
|
|
return;
|
|
}
|
|
|
|
task_queue.push(
|
|
fs.outputFile(root("src", `${importBinding}.mjs`), re_export_esm(importBinding), {
|
|
encoding: "utf-8",
|
|
}),
|
|
);
|
|
|
|
indexESM.push(`export { _ as ${importBinding} } from "./${importBinding}.js";`);
|
|
|
|
cjs_module_lexer.push(`${importBinding}: null,`);
|
|
cjs_export_list.push(`get ${importBinding}() {
|
|
return require("./${importBinding}.cjs")._;
|
|
},`);
|
|
});
|
|
|
|
indexCJS.push(
|
|
`0 && (module.exports = {`,
|
|
"/* @Annotate_start: the CommonJS named exports for ESM import in node */",
|
|
...cjs_module_lexer,
|
|
"/* @Annotate_end */",
|
|
`});`,
|
|
`module.exports = {`,
|
|
...cjs_export_list,
|
|
`};`,
|
|
);
|
|
|
|
task_queue.push(
|
|
fs.outputJSON(root("package.json"), main_package_json, { spaces: 4 }),
|
|
fs.outputFile(root("esm", "index.js"), indexESM.join("\n") + "\n", {
|
|
encoding: "utf-8",
|
|
}),
|
|
fs.outputFile(root("cjs", "index.cjs"), indexCJS.join("\n") + "\n", {
|
|
encoding: "utf-8",
|
|
}),
|
|
fs.outputFile(root("src", "index.mjs"), `export * from "../esm/index.js"`, {
|
|
encoding: "utf-8",
|
|
}),
|
|
);
|
|
|
|
task_queue.push(...ast_grep());
|
|
|
|
await Promise.all(task_queue);
|
|
|
|
if (errors.length > 0) {
|
|
errors.forEach((e) => {
|
|
console.error(e);
|
|
});
|
|
process.exitCode = 1;
|
|
} else {
|
|
$.cwd = root(".");
|
|
await $`dprint fmt`;
|
|
await $`dprint fmt "scripts/*.js" -c scripts/.dprint.json`;
|
|
}
|
|
|
|
function re_export_esm(importBinding) {
|
|
return `export { _ as default } from "../esm/${importBinding}.js"`;
|
|
}
|