Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Feedbacks
  • Loading branch information
arcanis committed Jun 20, 2023
commit 4573433768e2196038c02c68b7feedc150dd795c
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Yarn now accepts sponsorships! Please give a look at our [OpenCollective](https:

### **Major Changes**

- With Node.js 16's End of Life [approaching fast](https://nodejs.org/en/blog/announcements/nodejs16-eol), we dropped support for both Node.js 14 and 16, with Node.js 18 being the recommended LTS version.
- With Node.js 16's End of Life [approaching fast](https://nodejs.org/en/blog/announcements/nodejs16-eol), we dropped support for Node.js versions lower than 18.12.
- The `yarn set version` command will now skip generating the `yarnPath` configuration on new projects if it detects you're using [Corepack](https://nodejs.org/api/corepack.html)
- All official Yarn plugins are now included by default in the bundle we provide. You no longer need to run `yarn plugin import` for *official* plugins (you still need to do it for third-party plugins, of course).
- This doesn't change anything to the plugin API we provide, which will keep being maintained (Yarn still has a modular architecture and uses the exact same APIs as contrib plugins; all that changes is how we distribute our own features).
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-zipfs/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default async () =>
}),
esbuild({
tsconfig: false,
target: `node14`,
target: `node18`,
define: {
document: `undefined`,
XMLHttpRequest: `undefined`,
Expand Down
2 changes: 1 addition & 1 deletion packages/yarnpkg-core/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default defineConfig({
}),
esbuild({
tsconfig: false,
target: `node14`,
target: `node18`,
define: {
document: `undefined`,
XMLHttpRequest: `undefined`,
Expand Down
6 changes: 3 additions & 3 deletions packages/yarnpkg-pnp/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default defineConfig([
}),
esbuild({
tsconfig: false,
target: `node14`,
target: `node18`,
define: {
document: `undefined`,
XMLHttpRequest: `undefined`,
Expand All @@ -69,7 +69,7 @@ export default defineConfig([
}),
esbuild({
tsconfig: false,
target: `node14`,
target: `node18`,
define: {
document: `undefined`,
XMLHttpRequest: `undefined`,
Expand Down Expand Up @@ -97,7 +97,7 @@ export default defineConfig([
}),
esbuild({
tsconfig: false,
target: `node14`,
target: `node18`,
define: {
document: `undefined`,
XMLHttpRequest: `undefined`,
Expand Down