@stomp/stompjs 7.2.1 → 7.2.2-beta.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +12 -5
package/README.md CHANGED
@@ -166,6 +166,7 @@ This library is made possible by these amazing contributors:
166
166
  - [umsungjun](https://github.com/umsungjun)
167
167
  - [tomek3e](https://github.com/tomek3e)
168
168
  - [Samuel Yinger](https://github.com/GoldenSunX)
169
+ - [RokkieBrown](https://github.com/rokkie)
169
170
 
170
171
  This library is originally based on [stompjs](https://github.com/jmesnil/stomp-websocket) by [Jeff Mesnil](http://jmesnil.net/) with enhancements and bug fixes from [Jeff Lindsay](http://github.com/progrium) and [Vanessa Williams](http://github.com/fridgebuzz).
171
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stomp/stompjs",
3
- "version": "7.2.1",
3
+ "version": "7.2.2-beta.1",
4
4
  "description": "STOMP client for Javascript and Typescript",
5
5
  "scripts": {
6
6
  "clean": "rm -rf bundles esm6",
@@ -33,7 +33,6 @@
33
33
  },
34
34
  "homepage": "https://github.com/stomp-js/stompjs#readme",
35
35
  "devDependencies": {
36
- "@chiragrupani/karma-chromium-edge-launcher": "^2.4.1",
37
36
  "@rollup/plugin-terser": "^0.4.4",
38
37
  "@rollup/plugin-typescript": "^12.1.4",
39
38
  "jasmine": "^5.10.0",
@@ -41,7 +40,6 @@
41
40
  "karma-chrome-launcher": "^3.2.0",
42
41
  "karma-firefox-launcher": "^2.1.3",
43
42
  "karma-jasmine": "^5.1.0",
44
- "karma-safari-launcher": "https://github.com/RLovelett/karma-safari-launcher.git#safari-webdriver",
45
43
  "karma-summary-reporter": "^4.0.1",
46
44
  "onchange": "^7.1.0",
47
45
  "prettier": "^3.6.2",
@@ -55,8 +53,17 @@
55
53
  },
56
54
  "type": "module",
57
55
  "exports": {
58
- "import": "./esm6/index.js",
59
- "require": "./bundles/stomp.umd.js"
56
+ ".": {
57
+ "browser": "./bundles/stomp.umd.js",
58
+ "require": {
59
+ "types": "./index.d.ts",
60
+ "default": "./bundles/stomp.umd.js"
61
+ },
62
+ "import": {
63
+ "types": "./index.d.ts",
64
+ "default": "./esm6/index.js"
65
+ }
66
+ }
60
67
  },
61
68
  "main": "./bundles/stomp.umd.js",
62
69
  "browser": "./bundles/stomp.umd.js",