| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,5 +1,13 @@ | |||
| 1 | 1 | # Changelog | |
| 2 | 2 | ||
| 3 | + ## [0.34.6](https://github.com/nodejs/corepack/compare/v0.34.5...v0.34.6) (2026-01-23) | ||
| 4 | + | ||
| 5 | + | ||
| 6 | + ### Bug Fixes | ||
| 7 | + | ||
| 8 | + * **docs:** fix PowerShell functions suggestions ([#784](https://github.com/nodejs/corepack/issues/784)) ([b1544c8](https://github.com/nodejs/corepack/commit/b1544c82a63781bd77d49f7b566fefd0104b7d6d)) | ||
| 9 | + * update package manager versions ([#778](https://github.com/nodejs/corepack/issues/778)) ([efed597](https://github.com/nodejs/corepack/commit/efed59797d30caa362a1fa8475cd7d17dc3b7282)) | ||
| 10 | + | ||
| 3 | 11 | ## [0.34.5](https://github.com/nodejs/corepack/compare/v0.34.4...v0.34.5) (2025-11-24) | |
| 4 | 12 | ||
| 5 | 13 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -219,12 +219,12 @@ On Windows PowerShell, you can add functions using the `$PROFILE` automatic | |||
| 219 | 219 | variable: | |
| 220 | 220 | ||
| 221 | 221 | ```powershell | |
| 222 | - echo "function yarn { corepack yarn `$args }" >> $PROFILE | ||
| 223 | - echo "function yarnpkg { corepack yarnpkg `$args }" >> $PROFILE | ||
| 224 | - echo "function pnpm { corepack pnpm `$args }" >> $PROFILE | ||
| 225 | - echo "function pnpx { corepack pnpx `$args }" >> $PROFILE | ||
| 226 | - echo "function npm { corepack npm `$args }" >> $PROFILE | ||
| 227 | - echo "function npx { corepack npx `$args }" >> $PROFILE | ||
| 222 | + echo 'function yarn { corepack yarn @args }' >> $PROFILE | ||
| 223 | + echo 'function yarnpkg { corepack yarnpkg @args }' >> $PROFILE | ||
| 224 | + echo 'function pnpm { corepack pnpm @args }' >> $PROFILE | ||
| 225 | + echo 'function pnpx { corepack pnpx @args }' >> $PROFILE | ||
| 226 | + echo 'function npm { corepack npm @args }' >> $PROFILE | ||
| 227 | + echo 'function npx { corepack npx @args }' >> $PROFILE | ||
| 228 | 228 | ``` | |
| 229 | 229 | ||
| 230 | 230 | ### `corepack disable [... name]` | |
| Back | FazBrowse Home | New Git URL |
0 commit comments