single-file-cli 2.0.74 → 2.0.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compile.sh +5 -2
- package/deno.json +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/compile.sh
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
cp ./package.json ./package.json.copy
|
|
4
4
|
jq 'del(.dependencies)' ./package.json.copy > ./package.json
|
|
5
|
-
|
|
5
|
+
mv node_modules node_modules.copy
|
|
6
|
+
mv deno.lock deno.lock.copy
|
|
6
7
|
|
|
7
8
|
deno compile --allow-read --allow-write --allow-net --allow-env --allow-run --ext=js --output=./dist/single-file-aarch64-apple-darwin --target=aarch64-apple-darwin ./single-file
|
|
8
9
|
deno compile --allow-read --allow-write --allow-net --allow-env --allow-run --ext=js --output=./dist/single-file-x86_64-apple-darwin --target=x86_64-apple-darwin ./single-file
|
|
@@ -14,4 +15,6 @@ dev_id=$(security find-identity -p codesigning -v | grep "Apple Development" | a
|
|
|
14
15
|
codesign -f -s $dev_id ./dist/single-file-aarch64-apple-darwin
|
|
15
16
|
codesign -f -s $dev_id ./dist/single-file-x86_64-apple-darwin
|
|
16
17
|
|
|
17
|
-
mv ./package.json.copy ./package.json
|
|
18
|
+
mv ./package.json.copy ./package.json
|
|
19
|
+
mv node_modules.copy node_modules
|
|
20
|
+
mv deno.lock.copy deno.lock
|
package/deno.json
CHANGED
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "2.0.
|
|
1
|
+
export const version = "2.0.75";
|