@rocicorp/zero-sqlite3 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/shell.ps1 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rocicorp/zero-sqlite3",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "better-sqlite3 on bedrock",
5
5
  "homepage": "https://github.com/rocicorp/zero-sqlite3",
6
6
  "author": "Rocicorp",
package/shell.ps1 CHANGED
@@ -6,7 +6,7 @@ echo --% >/dev/null;: ' | out-null
6
6
  #
7
7
  # sh part
8
8
  #
9
- "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/build/Release/zero_sqlite3"
9
+ "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/build/Release/zero_sqlite3" "$@"
10
10
  # end bash part
11
11
 
12
12
  exit #>
@@ -16,5 +16,5 @@ exit #>
16
16
  # powershell part
17
17
  #
18
18
  $scriptDir = (Get-Item -Path $MyInvocation.MyCommand.Definition).DirectoryName
19
- & (Join-Path $scriptDir "build" "Release" "zero_sqlite3.exe")
19
+ & (Join-Path $scriptDir "build" "Release" "zero_sqlite3.exe") @args
20
20