Resolves F17 in docker-build-optimization-roadmap. Root cause: Gitea's app.ini ROOT_URL was http://localhost:3300/. Gitea bakes ROOT_URL into the dist.tarball field of every published package's metadata. Inside a Docker container, 'localhost' is the container itself, not the host \u2014 so any 'pnpm install' that needed to fetch a tarball would ECONNREFUSED, even though the registry metadata itself was reachable via host.docker.internal. Server-side fix (not in git, requires manual replication on each dev machine; documented in roadmap \u00a73 A-pre-6): - Edit /opt/homebrew/var/gitea/custom/conf/app.ini: ROOT_URL = http://host.docker.internal:3300/ - brew services restart gitea - sudo sh -c 'echo "127.0.0.1 host.docker.internal" >> /etc/hosts' Repo-side fix (this commit): - switch-network.sh: add host.docker.internal to NO_PROXY + NPM_CONFIG_NOPROXY when NETWORK=corp. Required so host-side curl/ pnpm/npm bypass the corporate proxy (cso.proxy.att.com) when resolving host.docker.internal. Without this, host installs fail with the corp proxy's 'Unknown Host' 504 page. Republished all 64 @bytelyst/* packages so tarball URLs reflect the new ROOT_URL: - .publish-manifest.json: 64 entries with new content hashes - packages/*/package.json: 64 patch-version bumps (auto-bumped by publish-outdated-packages.sh because previous versions already existed in registry) Verification: curl http://localhost:3300/.../@bytelyst%2Ferrors | jq .dist.tarball → http://host.docker.internal:3300/.../errors-0.1.11.tgz (was localhost:3300) workspace:* refs across all 64 packages: 0 Unblocks: A0-V on every pilot. Verified PASSING on learning_ai_clock: backend cold build: 59.2 s web cold build: 3:13 (193 s) Both via Gitea registry, no docker-prep.sh tarballs needed.
21 lines
362 B
JSON
21 lines
362 B
JSON
{
|
|
"name": "@bytelyst/accessibility",
|
|
"version": "0.1.8",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|