@crvy/strybk 0.0.3 → 0.0.4
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/CHANGELOG.md +5 -0
- package/README.md +21 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.0.4] - 2026-07-03
|
|
9
|
+
|
|
10
|
+
### Other
|
|
11
|
+
|
|
12
|
+
- Update README.md
|
|
8
13
|
## [0.0.3] - 2026-06-18
|
|
9
14
|
|
|
10
15
|
### Added
|
package/README.md
CHANGED
|
@@ -1,23 +1,11 @@
|
|
|
1
|
-
# strybk
|
|
1
|
+
# @crvy/strybk
|
|
2
2
|
|
|
3
3
|
Generator-first Playwright screenshot testing for Storybook.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
Install dependencies with Bun:
|
|
8
|
-
|
|
9
|
-
```sh
|
|
10
|
-
bun install
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Common local commands:
|
|
5
|
+
## Installation
|
|
14
6
|
|
|
15
7
|
```sh
|
|
16
|
-
|
|
17
|
-
bun run typecheck
|
|
18
|
-
bun run test:bun
|
|
19
|
-
bun run build
|
|
20
|
-
bun run check
|
|
8
|
+
npm install --save-dev @crvy/strybk
|
|
21
9
|
```
|
|
22
10
|
|
|
23
11
|
## CLI
|
|
@@ -93,3 +81,21 @@ If you want to persist the link in the consumer's manifest, Bun supports a `link
|
|
|
93
81
|
}
|
|
94
82
|
}
|
|
95
83
|
```
|
|
84
|
+
|
|
85
|
+
## Development
|
|
86
|
+
|
|
87
|
+
Install dependencies with Bun:
|
|
88
|
+
|
|
89
|
+
```sh
|
|
90
|
+
bun install
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
Common local commands:
|
|
94
|
+
|
|
95
|
+
```sh
|
|
96
|
+
bun run lint
|
|
97
|
+
bun run typecheck
|
|
98
|
+
bun run test:bun
|
|
99
|
+
bun run build
|
|
100
|
+
bun run check
|
|
101
|
+
```
|