@stacksjs/tunnel 0.67.0 → 0.68.1

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.d.ts CHANGED
@@ -1,3 +1,4 @@
1
- import { type LocalTunnel, localTunnel } from "./tunnel";
2
- export declare function createLocalTunnel(port: number): Promise<LocalTunnel>;
3
- export { localTunnel };
1
+ import { localTunnel } from './tunnel';
2
+
3
+ export { localTunnel }
4
+ export declare function createLocalTunnel(port: number): Promise<LocalTunnel>;
package/dist/tunnel.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export type LocalTunnel = string;
2
- export declare function localTunnel(options?: { port: number }): Promise<LocalTunnel>;
1
+ export declare type LocalTunnel = string
2
+ export declare function localTunnel(options?: { port: number }): Promise<LocalTunnel>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/tunnel",
3
3
  "type": "module",
4
- "version": "0.67.0",
4
+ "version": "0.68.1",
5
5
  "description": "Local development tunnel.",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": ["Chris Breuer <chris@stacksjs.org>"],