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.
86 lines
3.3 KiB
JSON
86 lines
3.3 KiB
JSON
{
|
|
"name": "enhanced-resolve",
|
|
"version": "5.24.5",
|
|
"description": "Offers a async require.resolve function. It's highly configurable.",
|
|
"homepage": "https://github.com/webpack/enhanced-resolve#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/webpack/enhanced-resolve.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Tobias Koppers @sokra",
|
|
"main": "lib/index.js",
|
|
"browser": {
|
|
"process": "./lib/util/process-browser.js",
|
|
"module": "./lib/util/module-browser.js",
|
|
"path": "./lib/util/path-browser.js",
|
|
"url": "./lib/util/url-browser.js",
|
|
"graceful-fs": "./lib/util/graceful-fs-browser.js"
|
|
},
|
|
"types": "types.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"types.d.ts",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"lint": "npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special && npm run fmt:check && npm run lint:spellcheck",
|
|
"lint:code": "eslint --cache .",
|
|
"lint:special": "node node_modules/tooling/inherit-types && node node_modules/tooling/generate-types",
|
|
"lint:types": "tsc",
|
|
"lint:types-test": "tsc -p tsconfig.types.test.json",
|
|
"lint:spellcheck": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
|
|
"fmt": "npm run fmt:base -- --log-level warn --write",
|
|
"fmt:check": "npm run fmt:base -- --check",
|
|
"fmt:base": "node_modules/prettier/bin/prettier.cjs --cache --ignore-unknown .",
|
|
"fix": "npm run fix:code && npm run fix:special",
|
|
"fix:code": "npm run lint:code -- --fix",
|
|
"fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/generate-types --write",
|
|
"type-report": "rimraf coverage && npm run cover:types && npm run cover:report && open-cli coverage/lcov-report/index.html",
|
|
"pretest": "npm run lint",
|
|
"test": "npm run test:only",
|
|
"test:only": "node scripts/test.js",
|
|
"test:watch": "node scripts/test.js --watch",
|
|
"test:coverage": "node scripts/test.js --experimental-test-coverage --test-coverage-include=\"lib/**\" --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage/lcov.info",
|
|
"test:browser": "node --experimental-vm-modules test/smoke/browser-run.cjs",
|
|
"version": "changeset version",
|
|
"release": "changeset publish",
|
|
"benchmark": "node --max-old-space-size=4096 --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./benchmark/run.mjs"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,cjs,mjs}": [
|
|
"eslint --cache --fix"
|
|
],
|
|
"*": [
|
|
"prettier --cache --write --ignore-unknown",
|
|
"cspell --cache --no-must-find-files"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"graceful-fs": "^4.2.4",
|
|
"tapable": "^2.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.30.0",
|
|
"@changesets/get-github-info": "^0.8.0",
|
|
"@codspeed/core": "^5.2.0",
|
|
"@types/graceful-fs": "^4.1.6",
|
|
"@types/node": "^24.10.4",
|
|
"cspell": "^10.0.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-webpack": "^4.9.5",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^17.0.4",
|
|
"memfs": "^4.56.11",
|
|
"prettier": "^3.7.4",
|
|
"tinybench": "^6.0.0",
|
|
"tooling": "webpack/tooling#v1.26.4",
|
|
"typescript": "^6.0.2",
|
|
"webpack": "^5.107.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
}
|
|
}
|