Skip to content

Commit ec9fdc8

Browse files
committed
stop using Deno
1 parent 8d1c815 commit ec9fdc8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build_nativescript.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ if [[ -n "${XCFRAMEWORKS[@]}" ]]; then
179179
# https://github.com/callstackincubator/react-native-node-api/blob/9b231c14459b62d7df33360f930a00343d8c46e6/docs/PREBUILDS.md
180180
OUTPUT_DIR="packages/ios/build/$CONFIG_BUILD/NativeScript.apple.node"
181181
rm -rf $OUTPUT_DIR
182-
deno run -A ./scripts/build_xcframework.mts --output "$OUTPUT_DIR" ${XCFRAMEWORKS[@]}
182+
node ./scripts/build_xcframework.mts --output "$OUTPUT_DIR" ${XCFRAMEWORKS[@]}
183183
else
184184
checkpoint "Creating NativeScript.xcframework"
185185

@@ -202,7 +202,7 @@ if $BUILD_MACOS; then
202202
# https://github.com/callstackincubator/react-native-node-api/blob/9b231c14459b62d7df33360f930a00343d8c46e6/docs/PREBUILDS.md
203203
OUTPUT_DIR="packages/macos/build/$CONFIG_BUILD/NativeScript.apple.node"
204204
rm -rf $OUTPUT_DIR
205-
deno run -A ./scripts/build_xcframework.mts --output "$OUTPUT_DIR" ${XCFRAMEWORKS[@]}
205+
node ./scripts/build_xcframework.mts --output "$OUTPUT_DIR" ${XCFRAMEWORKS[@]}
206206
fi
207207
fi
208208

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"email": "oss@nativescript.org"
1717
},
1818
"workspaces": [
19-
"packages/*"
19+
"packages/*",
20+
"scripts"
2021
],
2122
"scripts": {
2223
"apply-patches": "./apply_patches.sh",

0 commit comments

Comments
 (0)