@stacksjs/tunnel 0.62.0 → 0.63.0

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/dist/index.js CHANGED
@@ -16,3 +16,6 @@ export {
16
16
  localTunnel,
17
17
  createLocalTunnel
18
18
  };
19
+
20
+ //# debugId=90DE5DC212011F8764756E2164756E21
21
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/tunnel.ts", "../src/index.ts"],
4
+ "sourcesContent": [
5
+ "export async function localTunnel(options?: { port: number }) {\n const port = 3000\n\n if (!options?.port) options = { port }\n\n console.log('Creating local tunnel', options.port)\n\n return 'localTunnel'\n}\n",
6
+ "import { localTunnel } from './tunnel'\n\nexport async function createLocalTunnel(port: number) {\n return await localTunnel({ port })\n}\n\nexport { localTunnel }\n"
7
+ ],
8
+ "mappings": ";;AAAA,eAAsB,WAAW,CAAC,SAA4B;AAC5D,QAAM,OAAO;AAEb,OAAK,SAAS;AAAM,cAAU,EAAE,KAAK;AAErC,UAAQ,IAAI,yBAAyB,QAAQ,IAAI;AAEjD,SAAO;AAAA;;;ACLT,eAAsB,iBAAiB,CAAC,MAAc;AACpD,SAAO,MAAM,YAAY,EAAE,KAAK,CAAC;AAAA;",
9
+ "debugId": "90DE5DC212011F8764756E2164756E21",
10
+ "names": []
11
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/tunnel",
3
3
  "type": "module",
4
- "version": "0.62.0",
4
+ "version": "0.63.0",
5
5
  "description": "Local development tunnel.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",