@symbo.ls/tunnel 3.14.2 → 3.14.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @symbo.ls/tunnel
2
2
 
3
+ ## 3.14.4
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.3
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.2
4
20
 
5
21
  ### Patch Changes
@@ -0,0 +1 @@
1
+ {"type": "commonjs"}
package/package.json CHANGED
@@ -1,28 +1,21 @@
1
1
  {
2
2
  "name": "@symbo.ls/tunnel",
3
- "version": "3.14.2",
3
+ "version": "3.14.4",
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
- "development": "./server.js",
17
- "import": "./dist/esm/server.js",
18
- "require": "./dist/cjs/server.cjs",
19
- "default": "./dist/esm/server.js"
9
+ "development": "./src/server.js",
10
+ "import": "./dist/esm/src/server.js",
11
+ "require": "./dist/cjs/src/server.js",
12
+ "default": "./dist/esm/src/server.js"
20
13
  },
21
14
  "./client": {
22
- "development": "./client.js",
23
- "import": "./dist/esm/client.js",
24
- "require": "./dist/cjs/client.cjs",
25
- "default": "./dist/esm/client.js"
15
+ "development": "./src/client.js",
16
+ "import": "./dist/esm/src/client.js",
17
+ "require": "./dist/cjs/src/client.js",
18
+ "default": "./dist/esm/src/client.js"
26
19
  }
27
20
  },
28
21
  "bin": {
@@ -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