@layerzerolabs/dfs 0.0.5 → 0.0.8

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,9 +10,9 @@
10
10
  CLI Cleaning output folder
11
11
  CJS Build start
12
12
  ESM Build start
13
- CJS dist/index.cjs 1.40 KB
14
- CJS dist/index.cjs.map 5.35 KB
15
- CJS ⚡️ Build success in 88ms
16
13
  ESM dist/index.js 1.38 KB
17
14
  ESM dist/index.js.map 5.35 KB
18
- ESM ⚡️ Build success in 88ms
15
+ ESM ⚡️ Build success in 131ms
16
+ CJS dist/index.cjs 1.40 KB
17
+ CJS dist/index.cjs.map 5.35 KB
18
+ CJS ⚡️ Build success in 131ms
@@ -5,11 +5,11 @@
5
5
 
6
6
   RUN  v3.2.3 /home/runner/work/monorepo-internal/monorepo-internal/packages/dfs
7
7
 
8
- ✓ test/dfs.test.ts (3 tests) 308ms
9
- ✓ DI Depth-first-search > The handlers for each of a node's dependencies should be completed before that node  303ms
8
+ ✓ test/dfs.test.ts (3 tests) 306ms
9
+ ✓ DI Depth-first-search > The handlers for each of a node's dependencies should be completed before that node  302ms
10
10
 
11
11
   Test Files  1 passed (1)
12
12
   Tests  3 passed (3)
13
-  Start at  16:40:53
14
-  Duration  987ms (transform 140ms, setup 0ms, collect 74ms, tests 308ms, environment 0ms, prepare 317ms)
13
+  Start at  20:43:04
14
+  Duration  822ms (transform 71ms, setup 0ms, collect 64ms, tests 306ms, environment 0ms, prepare 169ms)
15
15
 
package/package.json CHANGED
@@ -1,37 +1,37 @@
1
1
  {
2
2
  "name": "@layerzerolabs/dfs",
3
- "version": "0.0.5",
3
+ "version": "0.0.8",
4
+ "private": false,
4
5
  "license": "MIT",
6
+ "type": "module",
7
+ "exports": {
8
+ "types": "./dist/index.d.ts",
9
+ "require": "./dist/index.cjs",
10
+ "import": "./dist/index.js",
11
+ "default": "./dist/index.cjs"
12
+ },
5
13
  "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
6
15
  "types": "./dist/index.d.ts",
7
16
  "dependencies": {
8
- "@layerzerolabs/dependency-graph": "0.0.5"
9
- },
10
- "publishConfig": {
11
- "access": "restricted",
12
- "registry": "https://registry.npmjs.org/"
17
+ "@layerzerolabs/dependency-graph": "0.0.8"
13
18
  },
14
19
  "devDependencies": {
15
20
  "tsup": "^8.4.0",
16
21
  "vitest": "^3.2.3",
17
- "@layerzerolabs/typescript-configuration": "0.0.5",
18
- "@layerzerolabs/tsup-configuration": "0.0.5"
22
+ "@layerzerolabs/typescript-configuration": "0.0.8",
23
+ "@layerzerolabs/tsup-configuration": "0.0.8"
19
24
  },
20
- "module": "./dist/index.js",
21
- "exports": {
22
- "types": "./dist/index.d.ts",
23
- "require": "./dist/index.cjs",
24
- "import": "./dist/index.js",
25
- "default": "./dist/index.cjs"
25
+ "publishConfig": {
26
+ "access": "restricted",
27
+ "registry": "https://registry.npmjs.org/"
26
28
  },
27
- "type": "module",
28
- "private": false,
29
29
  "scripts": {
30
- "clean": "rm -rf ./node_modules .turbo ./dist",
31
30
  "build": "tsup",
31
+ "clean": "rm -rf ./node_modules .turbo ./dist",
32
+ "dev": "tsup --watch",
32
33
  "lint": "eslint . --max-warnings 0",
33
34
  "lint:fix": "eslint . --fix --max-warnings 0",
34
- "test": "vitest --run --pass-with-no-tests",
35
- "dev": "tsup --watch"
35
+ "test": "vitest --run --pass-with-no-tests"
36
36
  }
37
37
  }