@pixotope/socket.io-client 0.1.0 → 0.2.0

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pixotope/socket.io-client@0.0.1 build /home/circleci/project/packages/socket.io-client
2
+ > @pixotope/socket.io-client@0.1.0 build /home/circleci/project/packages/socket.io-client
3
3
  > tsup src/index.ts --format cjs,esm
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -9,6 +9,6 @@
9
9
  CJS Build start
10
10
  ESM Build start
11
11
  ESM dist/index.js 255.92 KB
12
- ESM ⚡️ Build success in 1207ms
12
+ ESM ⚡️ Build success in 1262ms
13
13
  CJS dist/index.cjs 256.09 KB
14
- CJS ⚡️ Build success in 1214ms
14
+ CJS ⚡️ Build success in 1289ms
@@ -0,0 +1,4 @@
1
+
2
+ > @pixotope/socket.io-client@0.1.0 check-types /home/circleci/project/packages/socket.io-client
3
+ > tsc --noEmit
4
+
package/CHANGELOG.md CHANGED
@@ -1,8 +1,15 @@
1
1
  # @pixotope/socket.io-client
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9256ddb: - bum minor version for all packages
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
6
12
 
13
+ - 422922a: - `@pixotope/socket.io-client` fix type issue
7
14
  - e3a7b17: - `@pixotope/socket.io-client` bump minor version
8
15
  - `@pixotope/zmq-client` export default endpoints config struct
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixotope/socket.io-client",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -8,11 +8,13 @@
8
8
  "types": "dist/index.d.ts",
9
9
  "type": "module",
10
10
  "devDependencies": {
11
+ "@types/node": "^22.10.2",
11
12
  "socket.io-client": "^4.8.1",
12
13
  "tsup": "^8.5.0",
13
14
  "typescript": "^5.7.2"
14
15
  },
15
16
  "scripts": {
16
- "build": "tsup src/index.ts --format cjs,esm"
17
+ "build": "tsup src/index.ts --format cjs,esm",
18
+ "check-types": "tsc --noEmit"
17
19
  }
18
20
  }
package/tsconfig.json CHANGED
@@ -10,10 +10,10 @@
10
10
  "allowSyntheticDefaultImports": true,
11
11
  "useDefineForClassFields": true,
12
12
  "strict": true,
13
- "skipLibCheck": false,
13
+ "skipLibCheck": true,
14
14
  "sourceMap": true,
15
- "resolveJsonModule": true,
16
15
  "isolatedModules": true,
16
+ "moduleResolution": "bundler",
17
17
  "esModuleInterop": true,
18
18
  "noEmit": true,
19
19
  "noUnusedLocals": false,