@symbo.ls/tunnel 3.14.3 → 3.14.5

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/CHANGELOG.md CHANGED
@@ -1,10 +1,28 @@
1
1
  # @symbo.ls/tunnel
2
2
 
3
+ ## 3.14.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Manual patch bump triggered via workflow_dispatch (scope: @symbo.ls).
8
+ No source change behind this bump — released to refresh dist or
9
+ coordinate a cross-package version line.
10
+
11
+ ## 3.14.4
12
+
13
+ ### Patch Changes
14
+
15
+ - Manual patch bump triggered via workflow_dispatch (scope: @symbo.ls).
16
+ No source change behind this bump — released to refresh dist or
17
+ coordinate a cross-package version line.
18
+
3
19
  ## 3.14.3
4
20
 
5
21
  ### Patch Changes
6
22
 
7
- - c8dfb91: Fix tunnel exports to match the actual build output. Source lives in `src/`, esbuild's `--outbase=.` preserves that structure, so dist/esm/src/{client,server}.js is what gets built — the prior `./dist/esm/{client,server}.js` paths in the package's `import`/`default` exports pointed at non-existent files. Consumers (cli's tunnel.js subcommand, agents, workspace deploy) failed ERR_MODULE_NOT_FOUND on `@symbo.ls/tunnel/client`.
23
+ - Manual patch bump triggered via workflow_dispatch (scope: @symbo.ls).
24
+ No source change behind this bump — released to refresh dist or
25
+ coordinate a cross-package version line.
8
26
 
9
27
  ## 3.14.2
10
28
 
@@ -0,0 +1 @@
1
+ {"type": "commonjs"}
package/package.json CHANGED
@@ -1,27 +1,20 @@
1
1
  {
2
2
  "name": "@symbo.ls/tunnel",
3
- "version": "3.14.3",
3
+ "version": "3.14.5",
4
4
  "description": "Expose localhost through tunnel.symbo.ls",
5
5
  "type": "module",
6
- "main": "./dist/cjs/index.cjs",
7
6
  "exports": {
8
- ".": {
9
- "development": "./index.js",
10
- "import": "./dist/esm/index.js",
11
- "require": "./dist/cjs/index.cjs",
12
- "default": "./dist/esm/index.js"
13
- },
14
7
  "./package.json": "./package.json",
15
8
  "./server": {
16
9
  "development": "./src/server.js",
17
10
  "import": "./dist/esm/src/server.js",
18
- "require": "./dist/cjs/src/server.cjs",
11
+ "require": "./dist/cjs/src/server.js",
19
12
  "default": "./dist/esm/src/server.js"
20
13
  },
21
14
  "./client": {
22
15
  "development": "./src/client.js",
23
16
  "import": "./dist/esm/src/client.js",
24
- "require": "./dist/cjs/src/client.cjs",
17
+ "require": "./dist/cjs/src/client.js",
25
18
  "default": "./dist/esm/src/client.js"
26
19
  }
27
20
  },
@@ -32,8 +25,8 @@
32
25
  "scripts": {
33
26
  "start": "node bin/server.js",
34
27
  "build:esm": "esbuild $(find . -type f -name \"*.js\" -not -path \"*/dist/*\" -not -path \"*/node_modules/*\" -not -path \"*/__tests__/*\" -not -path \"*/test/*\" -not -path \"*/demo/*\" -not -path \"*/demos/*\" -not -path \"*/examples/*\" -not -path \"*/fixtures/*\" -not -name \"*.test.js\") --target=es2022 --format=esm --outbase=. --outdir=dist/esm --minify --log-level=warning",
35
- "build:cjs": "esbuild $(find . -type f -name \"*.js\" -not -path \"*/dist/*\" -not -path \"*/node_modules/*\" -not -path \"*/__tests__/*\" -not -path \"*/test/*\" -not -path \"*/demo/*\" -not -path \"*/demos/*\" -not -path \"*/examples/*\" -not -path \"*/fixtures/*\" -not -name \"*.test.js\") --target=node20 --format=cjs --outbase=. --outdir=dist/cjs --out-extension:.js=.cjs --minify --log-level=warning",
36
- "build": "rimraf dist && npm run build:esm && npm run build:cjs",
28
+ "build:cjs": "esbuild $(find . -type f -name \"*.js\" -not -path \"*/dist/*\" -not -path \"*/node_modules/*\" -not -path \"*/__tests__/*\" -not -path \"*/test/*\" -not -path \"*/demo/*\" -not -path \"*/demos/*\" -not -path \"*/examples/*\" -not -path \"*/fixtures/*\" -not -name \"*.test.js\") --target=node20 --format=cjs --outbase=. --outdir=dist/cjs --minify --log-level=warning",
29
+ "build": "rimraf dist && npm run build:esm && npm run build:cjs && node -e \"require('fs').writeFileSync('dist/cjs/package.json', '{\\\"type\\\": \\\"commonjs\\\"}')\"",
37
30
  "prepublishOnly": "npm run build"
38
31
  },
39
32
  "dependencies": {
@@ -48,6 +41,5 @@
48
41
  "dist",
49
42
  "*.md",
50
43
  "LICENSE"
51
- ],
52
- "module": "./dist/esm/index.js"
44
+ ]
53
45
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes