Skip to content

Commit c0fb121

Browse files
committed
update yarn
1 parent 0c3a696 commit c0fb121

File tree

9 files changed

+14
-10
lines changed

9 files changed

+14
-10
lines changed

packages/browser-integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"server": "http-server --port 3000",
1616
"browser": "playwright test --debug"
1717
},
18-
"packageManager": "yarn@3.2.1",
18+
"packageManager": "yarn@3.4.1",
1919
"devDependencies": {
2020
"@internal/config": "workspace:^",
2121
"@playwright/test": "^1.28.1",

packages/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,5 @@
9999
"webpack-bundle-analyzer": "^4.4.2",
100100
"webpack-cli": "^4.8.0"
101101
},
102-
"packageManager": "yarn@3.2.1"
102+
"packageManager": "yarn@3.4.1"
103103
}

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"version": "0.0.0",
44
"private": true,
55
"main": "./src",
6-
"packageManager": "yarn@3.2.1"
6+
"packageManager": "yarn@3.4.1"
77
}

packages/core-integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"concurrently": "yarn run -T concurrently",
1212
"jest": "yarn run -T jest"
1313
},
14-
"packageManager": "yarn@3.2.1",
14+
"packageManager": "yarn@3.4.1",
1515
"devDependencies": {
1616
"@internal/config": "workspace:^",
1717
"@segment/analytics-core": "workspace:^"

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"concurrently": "yarn run -T concurrently",
3131
"jest": "yarn run -T jest"
3232
},
33-
"packageManager": "yarn@3.2.1",
33+
"packageManager": "yarn@3.4.1",
3434
"dependencies": {
3535
"@lukeed/uuid": "^2.0.0",
3636
"dset": "^3.1.2",

packages/node-integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
"autocannon": "^7.10.0",
2323
"nock": "^13.2.9"
2424
},
25-
"packageManager": "yarn@3.2.1"
25+
"packageManager": "yarn@3.4.1"
2626
}

packages/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@
4141
"@types/node": "^16",
4242
"@types/uuid": "^9"
4343
},
44-
"packageManager": "yarn@3.2.1"
44+
"packageManager": "yarn@3.4.1"
4545
}

packages/test-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
"dependencies": {
2222
"tslib": "^2.4.1"
2323
},
24-
"packageManager": "yarn@3.2.1"
24+
"packageManager": "yarn@3.4.1"
2525
}

scripts/update-lockfile.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
#!/bin/bash
2-
# Changesets does not support yarn, so if the resolutions change, we want to commit them as part of the version pipeline.
2+
# # Changesets does not support yarn, so if the resolutions change, we want to commit them as part of the version pipeline.
3+
34
echo "pwd: $(pwd)"
45
echo "Checking if yarn.lock is up-to-date"
5-
YARN_ENABLE_IMMUTABLE_INSTALLS=false node .yarn/releases/yarn-3.2.1.cjs # https://github.com/changesets/action/issues/170
6+
7+
yarn_path=$(grep "yarnPath:" .yarnrc.yml | awk 'NF>1{print $NF}')
8+
YARN_ENABLE_IMMUTABLE_INSTALLS=false node "$yarn_path" # https://github.com/changesets/action/issues/170
69
git add yarn.lock
710
git status --porcelain
11+

0 commit comments

Comments
 (0)