Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: yarn supported archs #137

Merged
merged 3 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"esbuild",
"fastify",
"hardfork",
"libc",
"milkomeda",
"mirs",
"mydomain",
Expand Down
Binary file not shown.
14 changes: 13 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
nodeLinker: node-modules

supportedArchitectures:
os:
- current
- darwin
- linux
cpu:
- current
- x64
- arm64
libc:
- current
- glibc
- musl
plugins:
- path: .yarn/plugins/yarn-plugin-nixify.cjs
spec: "https://raw.githubusercontent.com/stephank/yarn-plugin-nixify/main/dist/yarn-plugin-nixify.js"
Expand Down
1 change: 1 addition & 0 deletions yarn-project.nix
Original file line number Diff line number Diff line change
Expand Up @@ -893,6 +893,7 @@ cacheEntries = {
"@pm2/agent@npm:2.0.1" = { filename = "@pm2-agent-npm-2.0.1-5724b5b93a-d15e1ccec8.zip"; sha512 = "d15e1ccec8e25bd020eabf2a59e0d2896082414b7950e918a1a19485ef1001012d7df6063fb720f453d9a2cd887abc80d576f985d2c28c127a7c1a16b95aee65"; };
"lodash@npm:4.17.20" = { filename = "lodash-npm-4.17.20-c0db62021c-b31afa0973.zip"; sha512 = "b31afa09739b7292a88ec49ffdb2fcaeb41f690def010f7a067eeedffece32da6b6847bfe4d38a77e6f41778b9b2bca75eeab91209936518173271f0b69376ea"; };
"@esbuild/darwin-arm64@npm:0.16.17" = { filename = "@esbuild-darwin-arm64-npm-0.16.17-96c7a38090-8.zip"; sha512 = "f2f833ed47915fd32d93d1e986dd52b34b748502434c15f629595055788af33fc22c2d99879974484034c409b30ff5a23488d4c8d80ae0c34ff83a55b4220fc2"; };
"@esbuild/linux-arm64@npm:0.16.17" = { filename = "@esbuild-linux-arm64-npm-0.16.17-2d25b25b7e-8.zip"; sha512 = "33c4b7bd20a23eb524a68be9b5c3a374866e5074eb45b32bbd05a5d0c774753fc834a0e94f616c8b1da85138bdd5bbbf45e5b8418528638e558542d9872e5be8"; };
"shimmer@npm:1.2.1" = { filename = "shimmer-npm-1.2.1-8b50bf3206-aa0d6252ad.zip"; sha512 = "aa0d6252ad1c682a4fdfda69e541be987f7a265ac7b00b1208e5e48cc68dc55f293955346ea4c71a169b7324b82c70f8400b3d3d2d60b2a7519f0a3522423250"; };
"tslib@npm:1.9.3" = { filename = "tslib-npm-1.9.3-e7a98883d6-56ef6325ad.zip"; sha512 = "56ef6325adb72c6477fb48256304507a2c475d69d7ead4644d61f5685fac2a275a38cf217c556e63fc3c177e729426d730e2c2e71c8042dc6cc57338a849edb2"; };
"json-stringify-safe@npm:5.0.1" = { filename = "json-stringify-safe-npm-5.0.1-064ddd6ab4-48ec0adad5.zip"; sha512 = "48ec0adad5280b8a96bb93f4563aa1667fd7a36334f79149abd42446d0989f2ddc58274b479f4819f1f00617957e6344c886c55d05a4e15ebb4ab931e4a6a8ee"; };
Expand Down
Loading