c7cda38235
`link-polyfill.ts` handled one provider. It now handles two through a registry, one of which is not a polyfill, so both the filename and the `link:` verb said something false — and a name that is short but wrong misleads more than an opaque one would. It becomes `overlay-local-checkout.ts`, which is the operation: it copy-overlays a local package checkout into node_modules for development. "link" also implied a symlink, which is precisely what the script exists NOT to do — its own header spends a paragraph on why. No behaviour changed: same registry, same copy, same `--once`, same watch loop, same assertion. Both providers exercised afterwards, each reporting the singletons it must preserve — one package for the data layer, two for the indexing package, whose own checkout carries `file:` links and would otherwise smuggle in a second verifier. Seven references repaired by rewriting the sentence that carried them rather than swapping a path, across the script, `package.json`, `.env.example` and four doctrine leaves. No compatibility alias left behind: an old name kept "just in case" would restore exactly the ambiguity being removed.
72 lines
3.0 KiB
JSON
72 lines
3.0 KiB
JSON
{
|
|
"name": "festipod",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "portless festipod bun --hot src/index.ts",
|
|
"start": "NODE_ENV=production bun src/index.ts",
|
|
"build": "bun run build.ts",
|
|
"test:cucumber": "bun run cucumber:run && bun run cucumber:report && bun run features:parse && bun run steps:extract",
|
|
"cucumber:run": "node --import tsx/esm node_modules/@cucumber/cucumber/bin/cucumber.js --config cucumber.json",
|
|
"test:data": "node --import tsx/esm node_modules/@cucumber/cucumber/bin/cucumber.js --config cucumber.json --tags @data",
|
|
"test:auth-setup": "bun scripts/setup-test-auth.ts",
|
|
"cucumber:report": "bun scripts/parse-test-results.ts",
|
|
"features:parse": "bun scripts/parse-features.ts",
|
|
"steps:extract": "bun scripts/extract-step-definitions.ts",
|
|
"build:orm": "rdf-orm build --input ./src/shared/shapes/shex --output ./src/shared/shapes/orm",
|
|
"validate": "bun scripts/validate.ts",
|
|
"build:ng": "bash scripts/build-ng-packages.sh",
|
|
"overlay:polyfill": "bun scripts/overlay-local-checkout.ts polyfill",
|
|
"overlay:indexing": "bun scripts/overlay-local-checkout.ts indexing",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build"
|
|
},
|
|
"dependencies": {
|
|
"@ng-eventually/polyfill": "git+https://gitea.reconnexion.apps.gueraud.net/Reconnexion/ng-eventually.git#a8d53010c227462cc9317e9be499c2100ca8d533&path:/packages/polyfill",
|
|
"@ng-helpers/indexing": "git+https://gitea.reconnexion.apps.gueraud.net/Sylvain/ng-helpers.git#v1.0.1",
|
|
"@ng-org/alien-deepsignals": "0.1.2-alpha.11",
|
|
"@ng-org/orm": "0.1.2-alpha.18",
|
|
"@ng-org/shex-orm": "0.1.2-alpha.8",
|
|
"@ng-org/web": "0.1.2-alpha.13",
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
"bun-plugin-tailwind": "^0.1.2",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.545.0",
|
|
"react": "^19",
|
|
"react-dom": "^19",
|
|
"tailwind-merge": "^3.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@cucumber/cucumber": "^12.5.0",
|
|
"@cucumber/gherkin": "^29.0.0",
|
|
"@cucumber/messages": "^26.0.1",
|
|
"@types/bun": "latest",
|
|
"@types/chai": "^5.2.3",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"chai": "^6.2.2",
|
|
"happy-dom": "^16.6.0",
|
|
"playwright": "^1.58.2",
|
|
"tailwindcss": "^4.1.11",
|
|
"tsx": "^4.21.0",
|
|
"tw-animate-css": "^1.4.0",
|
|
"storybook": "^10.3.5",
|
|
"@storybook/react-webpack5": "^10.3.5",
|
|
"@storybook/addon-webpack5-compiler-swc": "^4.0.3",
|
|
"@storybook/addon-a11y": "^10.3.5",
|
|
"@storybook/addon-docs": "^10.3.5",
|
|
"@storybook/addon-onboarding": "^10.3.5"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"bun"
|
|
]
|
|
},
|
|
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
|
|
}
|