@layerzerolabs/static-chain-info 0.0.22 → 0.0.24

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/staticChainInfo.cjs 537.00 B
14
- CJS dist/CBDER57P.cjs 37.67 KB
15
- CJS dist/index.cjs 6.59 KB
16
- CJS dist/staticChainInfo.cjs.map 80.00 B
17
- CJS dist/CBDER57P.cjs.map 79.09 KB
18
- CJS dist/index.cjs.map 12.34 KB
19
- CJS ⚡️ Build success in 349ms
20
13
  ESM dist/index.js 5.20 KB
21
14
  ESM dist/staticChainInfo.js 158.00 B
22
15
  ESM dist/75ERRJTE.js 33.26 KB
23
16
  ESM dist/index.js.map 12.29 KB
24
17
  ESM dist/staticChainInfo.js.map 79.00 B
25
18
  ESM dist/75ERRJTE.js.map 78.88 KB
26
- ESM ⚡️ Build success in 348ms
19
+ ESM ⚡️ Build success in 373ms
20
+ CJS dist/staticChainInfo.cjs 537.00 B
21
+ CJS dist/index.cjs 6.59 KB
22
+ CJS dist/CBDER57P.cjs 37.67 KB
23
+ CJS dist/staticChainInfo.cjs.map 80.00 B
24
+ CJS dist/index.cjs.map 12.34 KB
25
+ CJS dist/CBDER57P.cjs.map 79.09 KB
26
+ CJS ⚡️ Build success in 374ms
@@ -0,0 +1,8 @@
1
+
2
+ > @layerzerolabs/static-chain-info@0.0.0 checkdeps /home/runner/work/monorepo-internal/monorepo-internal/packages/chain-abstractions/static-chain-info
3
+ > pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --missing-dependencies --only $npm_package_name
4
+
5
+
6
+ > @layerzerolabs/depcheck@1.0.1 depcheck /home/runner/work/monorepo-internal/monorepo-internal/tools/repo/depcheck
7
+ > tsx ./src/index.ts "validate" "--catalog" "--missing-dependencies" "--only" "@layerzerolabs/static-chain-info"
8
+
@@ -1,4 +1,4 @@
1
1
 
2
2
  > @layerzerolabs/static-chain-info@0.0.0 lint /home/runner/work/monorepo-internal/monorepo-internal/packages/chain-abstractions/static-chain-info
3
- > eslint . --max-warnings 0
3
+ > eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/static-chain-info",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
@@ -16,16 +16,16 @@
16
16
  "types": "./dist/index.d.ts",
17
17
  "dependencies": {
18
18
  "@layerzerolabs/lz-definitions": "3.0.125",
19
- "@layerzerolabs/common-utils": "0.0.22",
20
- "@layerzerolabs/common-chain-model": "0.0.22",
21
- "@layerzerolabs/layerzero-definitions": "0.0.22"
19
+ "@layerzerolabs/common-utils": "0.0.24",
20
+ "@layerzerolabs/common-chain-model": "0.0.24",
21
+ "@layerzerolabs/layerzero-definitions": "0.0.24"
22
22
  },
23
23
  "devDependencies": {
24
24
  "bs58": "^5.0.0",
25
25
  "tsup": "^8.4.0",
26
26
  "vitest": "^3.2.3",
27
- "@layerzerolabs/tsup-configuration": "0.0.22",
28
- "@layerzerolabs/typescript-configuration": "0.0.22"
27
+ "@layerzerolabs/tsup-configuration": "0.0.24",
28
+ "@layerzerolabs/typescript-configuration": "0.0.24"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "restricted",
@@ -33,10 +33,10 @@
33
33
  },
34
34
  "scripts": {
35
35
  "build": "tsup",
36
+ "checkdeps": "pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --missing-dependencies --only $npm_package_name",
36
37
  "clean": "rm -rf ./node_modules .turbo ./dist",
37
38
  "dev": "tsup --watch",
38
- "lint": "eslint . --max-warnings 0",
39
- "lint:fix": "eslint . --fix --max-warnings 0",
39
+ "lint": "eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)",
40
40
  "test": "vitest --run --pass-with-no-tests"
41
41
  }
42
42
  }
package/tsconfig.json CHANGED
@@ -16,13 +16,5 @@
16
16
  "**/*.test.ts",
17
17
  "dist"
18
18
  ],
19
- "include": ["src/**/*"],
20
- "ts-node": {
21
- "files": true,
22
- "experimentalResolverFeatures": true,
23
- "compilerOptions": {
24
- "module": "CommonJS",
25
- "types": ["node"]
26
- }
27
- }
19
+ "include": ["src/**/*"]
28
20
  }