@rubriclab/bunl 0.0.16 → 0.0.18

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/build/client.js CHANGED
@@ -484,7 +484,7 @@ async function main({
484
484
  });
485
485
  }
486
486
  var { values } = parseArgs({
487
- args: Bun.argv,
487
+ args: process.argv,
488
488
  options: {
489
489
  port: {
490
490
  type: "string",
package/client.ts CHANGED
@@ -65,7 +65,7 @@ async function main({
65
65
  * See README for full usage.
66
66
  */
67
67
  const { values } = parseArgs({
68
- args: Bun.argv,
68
+ args: process.argv,
69
69
  options: {
70
70
  port: {
71
71
  type: "string",
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  },
5
5
  "name": "@rubriclab/bunl",
6
6
  "description": "Expose localhost to the world",
7
- "version": "0.0.16",
7
+ "version": "0.0.18",
8
8
  "license": "MIT",
9
9
  "repository": {
10
10
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "demo": "bun --hot demo.ts",
26
26
  "client:upgrade": "bun rm -g @rubriclab/bunl && bun i -g @rubriclab/bunl@latest",
27
27
  "build": "BUILD=build/client.js && bun build client.ts --outdir build --target node && echo -e \"#! /usr/bin/env node\n$(cat $BUILD)\" > $BUILD",
28
- "publish": "bun run build && npm publish"
28
+ "npm:publish": "bun run build && npm publish"
29
29
  },
30
30
  "type": "module",
31
31
  "peerDependencies": {