Restore node_modules to exact state from cli.js.map extraction: - Move .ignored/ and .ignored_* files back to original package paths - Remove pnpm symlinks (replaced by real source-map directories) - Update .gitignore: only exclude /dist/, .pnpm/, .bin/, .ignored* dirs - All package dist/ folders are now preserved as part of source-map files After clone, run `pnpm install` to get pnpm-managed symlinks for building. The committed node_modules contains the original TypeScript/JS source files as bundled in cli.js.
14 lines
378 B
Plaintext
14 lines
378 B
Plaintext
# Build output (top-level only, not node_modules/*/dist)
|
|
/dist/
|
|
|
|
# pnpm internals (generated by pnpm install, not from source map)
|
|
node_modules/.pnpm/
|
|
node_modules/.bin/
|
|
node_modules/.modules.yaml
|
|
node_modules/.pnpm-workspace-state-v1.json
|
|
|
|
# pnpm artefacts: source-map dirs moved aside during install
|
|
node_modules/.ignored/
|
|
node_modules/.ignored_*/
|
|
node_modules/**/.ignored_*/
|