Skip to content

Commit 8e2917d

Browse files
committed
chore: update build configuration files
- Update biome.json config - Update pkg.json config - Update rollup base config
1 parent 5b51ad3 commit 8e2917d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.config/biome.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"includes": [
55
"**",
66
"!**/.cache",
7-
"!**/.custom-node-build",
87
"!**/.DS_Store",
98
"!**/._.DS_Store",
109
"!**/.env",

.config/pkg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"socket-pnpm": "dist/pnpm-cli.js",
88
"socket-yarn": "dist/yarn-cli.js"
99
},
10-
"node": "/Users/jdalton/projects/socket-cli/.custom-node-build/node-yao-pkg/out/Release/node",
10+
"node": "/Users/jdalton/projects/socket-cli/build/tiny-node/node-yao-pkg/out/Release/node",
1111
"bytecode": false,
1212
"targets": [
1313
"node24-macos-arm64",
@@ -17,7 +17,7 @@
1717
"node24-win-arm64",
1818
"node24-win-x64"
1919
],
20-
"outputPath": "pkg-binaries",
20+
"outputPath": "build/stub",
2121
"assets": [
2222
"dist/**/*",
2323
"requirements.json",

.config/rollup.base.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ export default function baseConfig(extendConfig = {}) {
328328
INLINED_SOCKET_CLI_VERSION_HASH,
329329
() => JSON.stringify(getSocketCliVersionHash()),
330330
],
331-
[VITEST, () => !!constants.ENV[VITEST]],
331+
[VITEST, () => JSON.stringify(!!constants.ENV[VITEST])],
332332
].reduce((obj, { 0: name, 1: value }) => {
333333
obj[`process.env.${name}`] = value
334334
obj[`process.env['${name}']`] = value

0 commit comments

Comments
 (0)