@layerzerolabs/common-node-utils 0.0.49 → 0.0.50

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.
@@ -10,17 +10,17 @@
10
10
  CLI Cleaning output folder
11
11
  CJS Build start
12
12
  ESM Build start
13
+ CJS dist/files.cjs 295.00 B
14
+ CJS dist/index.cjs 1.87 KB
15
+ CJS dist/ORVETYPP.cjs 789.00 B
16
+ CJS dist/files.cjs.map 70.00 B
17
+ CJS dist/index.cjs.map 2.08 KB
18
+ CJS dist/ORVETYPP.cjs.map 1.23 KB
19
+ CJS ⚡️ Build success in 205ms
13
20
  ESM dist/files.js 129.00 B
14
- ESM dist/PXUGBXL3.js 1.00 KB
15
21
  ESM dist/index.js 1.06 KB
22
+ ESM dist/PXUGBXL3.js 1.00 KB
16
23
  ESM dist/files.js.map 69.00 B
17
- ESM dist/PXUGBXL3.js.map 1.98 KB
18
24
  ESM dist/index.js.map 2.04 KB
19
- ESM ⚡️ Build success in 91ms
20
- CJS dist/index.cjs 1.87 KB
21
- CJS dist/ORVETYPP.cjs 789.00 B
22
- CJS dist/files.cjs 295.00 B
23
- CJS dist/ORVETYPP.cjs.map 1.23 KB
24
- CJS dist/index.cjs.map 2.08 KB
25
- CJS dist/files.cjs.map 70.00 B
26
- CJS ⚡️ Build success in 91ms
25
+ ESM dist/PXUGBXL3.js.map 1.98 KB
26
+ ESM ⚡️ Build success in 205ms
@@ -1,7 +1,9 @@
1
1
 
2
2
  > @layerzerolabs/common-node-utils@0.0.0 test /home/runner/work/monorepo-internal/monorepo-internal/packages/common/common-node-utils
3
- > vitest --run --pass-with-no-tests
3
+ > vitest --run --pass-with-no-tests --typecheck
4
4
 
5
+ Testing types with tsc and vue-tsc is an experimental feature.
6
+ Breaking changes might not follow SemVer, please pin Vitest's version when using it.
5
7
 
6
8
   RUN  v3.2.3 /home/runner/work/monorepo-internal/monorepo-internal/packages/common/common-node-utils
7
9
 
@@ -9,4 +11,6 @@ No test files found, exiting with code 0
9
11
 
10
12
  include: **/*.{test,spec}.?(c|m)[jt]s?(x)
11
13
  exclude: **/node_modules/**, **/dist/**, **/cypress/**, **/.{idea,git,cache,output,temp}/**, **/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*
14
+ typecheck include: **/*.{test,spec}-d.?(c|m)[jt]s?(x)
15
+ typecheck exclude: **/node_modules/**, **/dist/**, **/cypress/**, **/.{idea,git,cache,output,temp}/**, **/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*
12
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/common-node-utils",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -16,8 +16,8 @@
16
16
  "devDependencies": {
17
17
  "tsup": "^8.4.0",
18
18
  "vitest": "^3.2.3",
19
- "@layerzerolabs/tsup-configuration": "0.0.49",
20
- "@layerzerolabs/typescript-configuration": "0.0.49"
19
+ "@layerzerolabs/tsup-configuration": "0.0.50",
20
+ "@layerzerolabs/typescript-configuration": "0.0.50"
21
21
  },
22
22
  "publishConfig": {
23
23
  "access": "restricted",
@@ -27,8 +27,7 @@
27
27
  "build": "tsup",
28
28
  "checkdeps": "pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --missing-dependencies --only $npm_package_name",
29
29
  "clean": "rm -rf ./node_modules .turbo ./dist",
30
- "dev": "tsup --watch",
31
30
  "lint": "eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)",
32
- "test": "vitest --run --pass-with-no-tests"
31
+ "test": "vitest --run --pass-with-no-tests --typecheck"
33
32
  }
34
33
  }