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 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
- rm -rf node_modules
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@single-file/single-file-cli",
3
- "version": "2.0.74",
3
+ "version": "2.0.75",
4
4
  "description": "SingleFile CLI",
5
5
  "nodeModulesDir": "auto",
6
6
  "exports": {
package/lib/version.js CHANGED
@@ -1 +1 @@
1
- export const version = "2.0.73";
1
+ export const version = "2.0.75";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-cli",
3
- "version": "2.0.74",
3
+ "version": "2.0.75",
4
4
  "description": "SingleFile CLI",
5
5
  "author": "Gildas Lormeau",
6
6
  "engines": {