@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.
- package/.turbo/turbo-build.log +3 -3
- package/.turbo/turbo-check-types.log +4 -0
- package/CHANGELOG.md +7 -0
- package/package.json +4 -2
- package/tsconfig.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @pixotope/socket.io-client@0.0
|
|
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
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,6 +9,6 @@
|
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[32mESM[39m [1mdist/index.js [22m[32m255.92 KB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 1262ms
|
|
13
13
|
[32mCJS[39m [1mdist/index.cjs [22m[32m256.09 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 1289ms
|
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.
|
|
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":
|
|
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,
|