Skip to content

Commit a46fe68

Browse files
committed
fix(deps): correct @socketsecurity/lib references in workspace packages
Replace incorrect workspace:* references with explicit version 1.3.3. @socketsecurity/lib is an external npm package, not a workspace package. Updated packages: - build-infra - codet5-models - onnx-runtime - sbom-generator - yoga-layout
1 parent c868afe commit a46fe68

File tree

74 files changed

+720
-1518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+720
-1518
lines changed

.gitignore

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Thumbs.db
2222
**/coverage
2323
**/.type-coverage
2424
**/dist
25+
**/build
2526
**/node_modules
2627
**/pkg
2728
**/target
@@ -39,15 +40,5 @@ Thumbs.db
3940
!src/types/**/*.d.ts
4041
!/.vscode/extensions.json
4142

42-
uild directory for temporary artifacts
43-
**/build/*
44-
!/build/out
45-
/build/out/*
46-
!/build/out/Yao
47-
/build/out/Yao/*
48-
/binaries
49-
50-
# Ignore socketbin package build artifacts (binaries and wasm files)
51-
# These are generated during build and should not be committed
43+
# Ignore platform binary build artifacts
5244
packages/socketbin-*/bin/
53-
packages/socketbin-*/build/

MONOREPO.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Optional platform-specific native binaries:
2727

2828
### Private Build Tools (2 total)
2929

30-
- `@socketbin/custom-node` - Builds custom Node.js from source with Socket patches
31-
- `@socketbin/sea` - Builds Socket CLI as native Node.js SEA binaries (fallback)
30+
- `@socketbin/node-smol-builder-builder` - Builds custom Node.js from source with Socket patches
31+
- `@socketbin/node-sea-builder-builder` - Builds Socket CLI as native Node.js SEA binaries (fallback)
3232

3333
## Directory Structure
3434

@@ -56,7 +56,7 @@ socket-cli/
5656
│ │ │ └── build.mjs # Build script
5757
│ │ └── package.json
5858
│ │
59-
│ ├── socketbin-native-node-sea/ # SEA builder
59+
│ ├── socketbin-native-node-sea-builder/ # SEA builder
6060
│ │ ├── scripts/
6161
│ │ │ ├── build.mjs # SEA build script
6262
│ │ │ └── publish.mjs # Publish script

docs/configuration/configuration-migration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,11 @@ Start with packages that have minimal custom configuration:
217217
- Simple vitest config (just timeout overrides)
218218
- Should extend base config easily
219219
220-
2. **packages/socketbin-custom-node-from-source**
220+
2. **packages/node-smol-builder**
221221
- Simple vitest config (just timeout overrides)
222222
- Should extend base config easily
223223
224-
3. **packages/socketbin-native-node-sea**
224+
3. **packages/node-sea-builder**
225225
- Simple vitest config (just timeout overrides)
226226
- Should extend base config easily
227227

docs/configuration/configuration-summary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ A comprehensive shared configuration architecture has been implemented for the s
110110

111111
Migrate packages with minimal custom configuration:
112112

113-
1. **packages/socketbin-custom-node-from-source**
113+
1. **packages/node-smol-builder**
114114
- Impact: Low risk
115115
- Effort: 15-30 minutes
116116
- Files: tsconfig.json, vitest.config.mts
117117

118-
2. **packages/socketbin-native-node-sea**
118+
2. **packages/node-sea-builder**
119119
- Impact: Low risk
120120
- Effort: 15-30 minutes
121121
- Files: tsconfig.json, vitest.config.mts

docs/wasm-build-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ If you need fine-grained control:
285285
### 1. Direct Cargo Build
286286
287287
```bash
288-
cd packages/socketbin-custom-node-from-source/wasm-bundle
288+
cd packages/node-smol-builder/wasm-bundle
289289

290290
# Dev build
291291
cargo build --target wasm32-unknown-unknown --profile dev-wasm

packages/build-infra/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"./lib/checkpoint-manager": "./lib/checkpoint-manager.mjs"
1515
},
1616
"dependencies": {
17-
"@socketsecurity/lib": "workspace:*"
17+
"@socketsecurity/lib": "1.3.3"
1818
}
1919
}

packages/codet5-models/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
},
1212
"dependencies": {
1313
"@socketsecurity/build-infra": "workspace:*",
14-
"@socketsecurity/lib": "workspace:*"
14+
"@socketsecurity/lib": "1.3.3"
1515
}
1616
}

0 commit comments

Comments
 (0)