Skip to content
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
15 changes: 15 additions & 0 deletions .changeset/rare-fans-take.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
"ferric-cli": patch
"@react-native-node-api/test-app": patch
"@react-native-node-api/cli-utils": patch
"cmake-file-api": patch
"cmake-rn": patch
"@react-native-node-api/ferric-example": patch
"gyp-to-cmake": patch
"react-native-node-api": patch
"@react-native-node-api/node-addon-examples": patch
"@react-native-node-api/node-tests": patch
"weak-node-api": patch
---

Fix missing build artifacts 🙈
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"bootstrap": "node --run build && npm run bootstrap --workspaces --if-present",
"changeset": "changeset",
"release": "changeset publish",
"prerelease": "node --run build && npm run prerelease --workspaces --if-present && node --run publint",
"init-macos-test-app": "node scripts/init-macos-test-app.ts"
},
"author": {
Expand Down
4 changes: 4 additions & 0 deletions packages/ferric/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"directory": "packages/ferric"
},
"type": "module",
"files": [
"bin",
"dist"
],
"bin": {
"ferric": "./bin/ferric.js"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/host/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"injector:generate": "node scripts/generate-injector.mts",
"test": "tsx --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout src/node/**/*.test.ts src/node/*.test.ts",
"test:gradle": "ENABLE_GRADLE_TESTS=true node --run test",
"bootstrap": "node --run injector:generate"
"bootstrap": "node --run injector:generate",
"prerelease": "node --run injector:generate"
},
"keywords": [
"node-api",
Expand Down
3 changes: 2 additions & 1 deletion packages/weak-node-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"test:configure": "cmake -S . -B build-tests -DBUILD_TESTS=ON",
"test:build": "cmake --build build-tests",
"test:run": "ctest --test-dir build-tests --output-on-failure",
"bootstrap": "node --run prebuild:prepare && node --run prebuild:build"
"bootstrap": "node --run prebuild:prepare && node --run prebuild:build",
"prerelease": "node --run prebuild:prepare && node --run prebuild:build:all"
},
"keywords": [
"react-native",
Expand Down
Loading