@layerzerolabs/dfs 0.0.23 → 0.0.25

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.
@@ -12,7 +12,7 @@
12
12
  ESM Build start
13
13
  CJS dist/index.cjs 3.27 KB
14
14
  CJS dist/index.cjs.map 11.45 KB
15
- CJS ⚡️ Build success in 122ms
15
+ CJS ⚡️ Build success in 123ms
16
16
  ESM dist/index.js 3.25 KB
17
17
  ESM dist/index.js.map 11.45 KB
18
18
  ESM ⚡️ Build success in 122ms
@@ -1,8 +1,8 @@
1
1
 
2
2
  > @layerzerolabs/dfs@0.0.2 checkdeps /home/runner/work/monorepo-internal/monorepo-internal/packages/framework/dfs
3
- > pnpm --filter @layerzerolabs/depcheck run depcheck validate --missing-dependencies --only $npm_package_name
3
+ > pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --missing-dependencies --only $npm_package_name
4
4
 
5
5
 
6
6
  > @layerzerolabs/depcheck@1.0.1 depcheck /home/runner/work/monorepo-internal/monorepo-internal/tools/repo/depcheck
7
- > tsx ./src/index.ts "validate" "--missing-dependencies" "--only" "@layerzerolabs/dfs"
7
+ > tsx ./src/index.ts "validate" "--catalog" "--missing-dependencies" "--only" "@layerzerolabs/dfs"
8
8
 
@@ -1,4 +1,4 @@
1
1
 
2
2
  > @layerzerolabs/dfs@0.0.2 lint /home/runner/work/monorepo-internal/monorepo-internal/packages/framework/dfs
3
- > eslint . --max-warnings 0
3
+ > eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)
4
4
 
@@ -5,11 +5,11 @@
5
5
 
6
6
   RUN  v3.2.3 /home/runner/work/monorepo-internal/monorepo-internal/packages/framework/dfs
7
7
 
8
- ✓ test/dfs.test.ts (7 tests) 532ms
9
- ✓ DI Depth-first-search > The handlers for each of a node's dependencies should be completed before that node  305ms
8
+ ✓ test/dfs.test.ts (7 tests) 488ms
9
+ ✓ DI Depth-first-search > The handlers for each of a node's dependencies should be completed before that node  304ms
10
10
 
11
11
   Test Files  1 passed (1)
12
12
   Tests  7 passed (7)
13
-  Start at  18:56:05
14
-  Duration  1.41s (transform 234ms, setup 0ms, collect 197ms, tests 532ms, environment 0ms, prepare 364ms)
13
+  Start at  23:58:27
14
+  Duration  1.07s (transform 138ms, setup 0ms, collect 138ms, tests 488ms, environment 0ms, prepare 168ms)
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/dfs",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -14,13 +14,13 @@
14
14
  "module": "./dist/index.js",
15
15
  "types": "./dist/index.d.ts",
16
16
  "dependencies": {
17
- "@layerzerolabs/dependency-graph": "0.0.23"
17
+ "@layerzerolabs/dependency-graph": "0.0.25"
18
18
  },
19
19
  "devDependencies": {
20
20
  "tsup": "^8.4.0",
21
21
  "vitest": "^3.2.3",
22
- "@layerzerolabs/typescript-configuration": "0.0.23",
23
- "@layerzerolabs/tsup-configuration": "0.0.23"
22
+ "@layerzerolabs/tsup-configuration": "0.0.25",
23
+ "@layerzerolabs/typescript-configuration": "0.0.25"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "restricted",
@@ -28,12 +28,10 @@
28
28
  },
29
29
  "scripts": {
30
30
  "build": "tsup",
31
- "checkcatalog": "pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --only $npm_package_name",
32
- "checkdeps": "pnpm --filter @layerzerolabs/depcheck run depcheck validate --missing-dependencies --only $npm_package_name",
31
+ "checkdeps": "pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --missing-dependencies --only $npm_package_name",
33
32
  "clean": "rm -rf ./node_modules .turbo ./dist",
34
33
  "dev": "tsup --watch",
35
- "lint": "eslint . --max-warnings 0",
36
- "lint:fix": "eslint . --fix --max-warnings 0",
34
+ "lint": "eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)",
37
35
  "test": "vitest --run --pass-with-no-tests"
38
36
  }
39
37
  }
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
  }
@@ -1,8 +0,0 @@
1
-
2
- > @layerzerolabs/dfs@0.0.2 checkcatalog /home/runner/work/monorepo-internal/monorepo-internal/packages/framework/dfs
3
- > pnpm --filter @layerzerolabs/depcheck run depcheck validate --catalog --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" "--only" "@layerzerolabs/dfs"
8
-