@tf2pickup-org/mumble-protocol 1.0.7 → 1.0.8

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.8](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.7...1.0.8) (2025-01-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **build:** resolve full import paths ([0eb192f](https://github.com/tf2pickup-org/mumble-protocol/commit/0eb192ff11ff50dabf853efb3c39340b18be61e5))
9
+
3
10
  ## [1.0.7](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.6...1.0.7) (2025-01-03)
4
11
 
5
12
 
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './Mumble';
1
+ export * from './Mumble.js';
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export * from './Mumble';
1
+ export * from './Mumble.js';
2
2
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tf2pickup-org/mumble-protocol",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "description": "Mumble protocol typings",
6
6
  "main": "dist/index.js",
@@ -31,11 +31,12 @@
31
31
  "@release-it/conventional-changelog": "9.0.4",
32
32
  "@tsconfig/node16": "16.1.3",
33
33
  "release-it": "17.11.0",
34
+ "tsc-alias": "1.8.10",
34
35
  "typescript": "5.7.2"
35
36
  },
36
37
  "scripts": {
37
38
  "generate-proto": "protoc --ts_out ./ --ts_opt eslint_disable --proto_path . Mumble.proto",
38
- "build": "tsc",
39
+ "build": "tsc && tsc-alias",
39
40
  "release": "release-it"
40
41
  }
41
42
  }
package/tsconfig.json CHANGED
@@ -19,5 +19,9 @@
19
19
  "exclude": [
20
20
  "node_modules",
21
21
  "dist"
22
- ]
22
+ ],
23
+ "tsc-alias": {
24
+ "resolveFullPaths": true,
25
+ "verbose": false
26
+ }
23
27
  }