Skip to content

Commit

Permalink
build: upgrade Yarn to v4/berry
Browse files Browse the repository at this point in the history
Following https://yarnpkg.com/migration/guide:

   yarn set version berry
   yarn install
  • Loading branch information
turadg committed Apr 26, 2024
1 parent 7401200 commit 7764b9c
Show file tree
Hide file tree
Showing 9 changed files with 12,319 additions and 8,554 deletions.
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,15 @@ typings/
# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity
# Yarn
# see https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# dotenv environment variables file
.env
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"engines": {
"node": ">=16"
},
"packageManager": "yarn@1.22.21",
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@jessie.js/eslint-plugin": "^0.3.0",
"@octokit/core": "^3.4.0",
Expand Down
4 changes: 1 addition & 3 deletions packages/bundle-source/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
"description": "Create source bundles from ES Modules",
"type": "module",
"main": "src/index.js",
"bin": {
"bundle-source": "./src/tool.js"
},
"bin": "./src/tool.js",
"exports": {
".": "./src/index.js",
"./exported.js": "./exported.js",
Expand Down
2 changes: 0 additions & 2 deletions packages/env-options/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@endo/env-options",
"version": "1.1.3",
"private": null,
"description": "Reading environment options.",
"keywords": [],
"author": "Endo contributors",
Expand All @@ -18,7 +17,6 @@
"type": "module",
"main": "./index.js",
"module": "./index.js",
"browser": null,
"unpkg": null,
"types": null,
"exports": {
Expand Down
2 changes: 0 additions & 2 deletions packages/memoize/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@endo/memoize",
"version": "1.1.1",
"private": null,
"description": "Safe function memoization",
"keywords": [],
"author": "Endo contributors",
Expand All @@ -18,7 +17,6 @@
"type": "module",
"main": "./index.js",
"module": "./index.js",
"browser": null,
"unpkg": null,
"types": null,
"exports": {
Expand Down
1 change: 0 additions & 1 deletion packages/ses/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
"tools.js",
"src"
],
"private": false,
"publishConfig": {
"access": "public"
},
Expand Down
1 change: 0 additions & 1 deletion packages/zip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"*.js",
"*.ts"
],
"private": false,
"publishConfig": {
"access": "public"
},
Expand Down
Loading

0 comments on commit 7764b9c

Please sign in to comment.