Skip to content

Commit

Permalink
Merge branch 'main' into 0x80/iso-27-pnpm-prune-fails-to-read-specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
0x80 committed Aug 4, 2024
2 parents 2f2f5ba + c39f9fa commit 035c1bf
Show file tree
Hide file tree
Showing 4 changed files with 829 additions and 787 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ integrated, check out [mono-ts](https://github.com/0x80/mono-ts)
deployments.
- Preserve packages file structure, without code bundling
- Should work with any package manager, and tested with NPM, PNPM, and Yarn
(both classic and modern)
- There is partial support for Bun - the process will detect the Bun package manager but will not output a Bun lockfile for the isolated package; instead it will fall back to generating an NPM lockfile.
(both classic and modern). Bun is partially supported; the output will
generate an NPM lockfile.
- Zero-config for the vast majority of use-cases
- Isolates dependencies recursively. If package A depends on internal package B
which depends on internal package C, all of them will be included
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"format": "prettier --write .",
"lint": "eslint . --max-warnings 0",
"lint:format": "prettier --check .",
"type-check": "tsc --noEmit",
"prepare": "pnpm run type-check && pnpm run build"
"compile": "tsc --noEmit",
"prepare": "pnpm run compile && pnpm run build"
},
"dependencies": {
"@npmcli/arborist": "^7.4.0",
"@npmcli/arborist": "^7.5.4",
"@pnpm/logger": "^5.0.0",
"@pnpm/types": "^9.4.2",
"chalk": "^5.3.0",
Expand All @@ -54,25 +54,25 @@
"pnpm_lockfile_file_v9": "npm:@pnpm/lockfile-file@9",
"pnpm_prune_lockfile_v8": "npm:@pnpm/prune-lockfile@5",
"pnpm_prune_lockfile_v9": "npm:@pnpm/prune-lockfile@6",
"remeda": "^1.56.0",
"remeda": "^2.7.0",
"rename-overwrite": "^5.0.0",
"source-map-support": "^0.5.21",
"strip-json-comments": "^5.0.1",
"tar-fs": "^3.0.5",
"type-fest": "^4.14.0",
"yaml": "^2.4.1"
"tar-fs": "^3.0.6",
"type-fest": "^4.23.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.2",
"@types/node": "^22.1.0",
"@types/source-map-support": "^0.5.10",
"@types/tar-fs": "^2.0.4",
"eslint": "^8",
"eslint-config-0x80": "^0.0.0",
"prettier": "^3.2.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]+sha256.bdfc9a7b372b5c462176993e586492603e20da5864d2f8881edc2462482c76fa"
Expand Down
Loading

0 comments on commit 035c1bf

Please sign in to comment.