@feathersjs/socketio-client 5.0.0-pre.25 → 5.0.0-pre.28

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/CHANGELOG.md +30 -0
  2. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-pre.28](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.27...v5.0.0-pre.28) (2022-08-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli:** Improve generated application and client ([#2701](https://github.com/feathersjs/feathers/issues/2701)) ([bd55ffb](https://github.com/feathersjs/feathers/commit/bd55ffb812e89bf215f4515e7f137656ea888c3f))
12
+
13
+
14
+
15
+
16
+
17
+ # [5.0.0-pre.27](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.26...v5.0.0-pre.27) (2022-07-13)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **socketio-client:** Make Socket.io client event target compatible ([#2686](https://github.com/feathersjs/feathers/issues/2686)) ([716c49a](https://github.com/feathersjs/feathers/commit/716c49a270e4be5e5276192092c292f72ffcfa19))
23
+
24
+
25
+
26
+
27
+
28
+ # [5.0.0-pre.26](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.25...v5.0.0-pre.26) (2022-06-22)
29
+
30
+ **Note:** Version bump only for package @feathersjs/socketio-client
31
+
32
+
33
+
34
+
35
+
6
36
  # [5.0.0-pre.25](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.24...v5.0.0-pre.25) (2022-06-22)
7
37
 
8
38
  **Note:** Version bump only for package @feathersjs/socketio-client
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/socketio-client",
3
3
  "description": "The client for Socket.io through feathers-socketio",
4
- "version": "5.0.0-pre.25",
4
+ "version": "5.0.0-pre.28",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -33,7 +33,8 @@
33
33
  },
34
34
  "scripts": {
35
35
  "prepublish": "npm run compile",
36
- "compile": "shx rm -rf lib/ && tsc",
36
+ "pack": "npm pack --pack-destination ../cli/test",
37
+ "compile": "shx rm -rf lib/ && tsc && npm run pack",
37
38
  "mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts",
38
39
  "test": "npm run mocha"
39
40
  },
@@ -53,21 +54,21 @@
53
54
  "access": "public"
54
55
  },
55
56
  "dependencies": {
56
- "@feathersjs/transport-commons": "^5.0.0-pre.25"
57
+ "@feathersjs/transport-commons": "^5.0.0-pre.28"
57
58
  },
58
59
  "devDependencies": {
59
- "@feathersjs/commons": "^5.0.0-pre.25",
60
- "@feathersjs/feathers": "^5.0.0-pre.25",
61
- "@feathersjs/memory": "^5.0.0-pre.25",
62
- "@feathersjs/socketio": "^5.0.0-pre.25",
63
- "@feathersjs/tests": "^5.0.0-pre.25",
60
+ "@feathersjs/commons": "^5.0.0-pre.28",
61
+ "@feathersjs/feathers": "^5.0.0-pre.28",
62
+ "@feathersjs/memory": "^5.0.0-pre.28",
63
+ "@feathersjs/socketio": "^5.0.0-pre.28",
64
+ "@feathersjs/tests": "^5.0.0-pre.28",
64
65
  "@types/mocha": "^9.1.1",
65
- "@types/node": "^17.0.40",
66
+ "@types/node": "^18.6.3",
66
67
  "mocha": "^10.0.0",
67
68
  "shx": "^0.3.4",
68
69
  "socket.io-client": "^4.5.1",
69
- "ts-node": "^10.8.1",
70
- "typescript": "^4.7.3"
70
+ "ts-node": "^10.9.1",
71
+ "typescript": "^4.7.4"
71
72
  },
72
- "gitHead": "c0ab3b603920dff6e9c912b2767cf168094d45c8"
73
+ "gitHead": "bf8e54fddc14d688ba8f505e72c9630a71656ff1"
73
74
  }