@fedify/testing 2.0.0-dev.236 → 2.0.0-dev.241

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.
Files changed (1) hide show
  1. package/package.json +8 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/testing",
3
- "version": "2.0.0-dev.236+9f9235d1",
3
+ "version": "2.0.0-dev.241+58c8126c",
4
4
  "description": "Testing utilities for Fedify applications",
5
5
  "keywords": [
6
6
  "fedify",
@@ -50,7 +50,7 @@
50
50
  "package.json"
51
51
  ],
52
52
  "peerDependencies": {
53
- "@fedify/fedify": "^2.0.0-dev.236+9f9235d1"
53
+ "@fedify/fedify": "^2.0.0-dev.241+58c8126c"
54
54
  },
55
55
  "dependencies": {
56
56
  "es-toolkit": "1.43.0"
@@ -64,11 +64,12 @@
64
64
  "@fedify/fixture": "^2.0.0"
65
65
  },
66
66
  "scripts": {
67
- "build": "tsdown",
68
- "prepublish": "tsdown",
69
- "test": "tsdown && node --experimental-transform-types --test",
70
- "test:bun": "tsdown && bun test --timeout 15000",
67
+ "build:self": "tsdown",
68
+ "build": "pnpm --filter @fedify/testing... run build:self",
69
+ "prepublish": "pnpm build",
70
+ "test": "pnpm build && node --experimental-transform-types --test",
71
+ "test:bun": "pnpm build && bun test --timeout 15000",
71
72
  "test:deno": "deno task test",
72
- "test-all": "tsdown && node --experimental-transform-types --test && bun test --timeout 15000 && deno task test"
73
+ "test-all": "pnpm build && node --experimental-transform-types --test && bun test --timeout 15000 && deno task test"
73
74
  }
74
75
  }