@routecraft/testing 0.5.0-canary.43 → 0.5.0-canary.45
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.
- package/README.md +5 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,13 +5,13 @@ Test utilities for Routecraft capabilities. Use with [Vitest](https://vitest.dev
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
or
|
|
8
|
+
# Bun (recommended)
|
|
9
|
+
bun add -D @routecraft/testing
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
# npm / pnpm / yarn
|
|
12
|
+
npm install -D @routecraft/testing
|
|
14
13
|
pnpm add -D @routecraft/testing
|
|
14
|
+
yarn add -D @routecraft/testing
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Install as a devDependency. Requires `vitest` (>=4.0.0) and `@routecraft/routecraft`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@routecraft/testing",
|
|
3
|
-
"version": "0.5.0-canary.
|
|
3
|
+
"version": "0.5.0-canary.45",
|
|
4
4
|
"description": "Test utilities for Routecraft routes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
21
21
|
"test": "vitest",
|
|
22
22
|
"test:coverage": "vitest --coverage",
|
|
23
|
-
"prepublishOnly": "
|
|
23
|
+
"prepublishOnly": "bun run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@routecraft/routecraft": "^0.5.0-canary.
|
|
26
|
+
"@routecraft/routecraft": "^0.5.0-canary.45",
|
|
27
27
|
"@standard-schema/spec": "^1.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|