@opensecret/react 0.4.0 → 1.0.0-beta.2
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 +6 -0
- package/dist/index.d.ts +623 -3
- package/dist/opensecret-react.es.js +6322 -6457
- package/dist/opensecret-react.umd.js +44 -73
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -189,6 +189,12 @@ To test the library, run the following command:
|
|
|
189
189
|
bun test --env-file .env.local
|
|
190
190
|
```
|
|
191
191
|
|
|
192
|
+
To test a specific file or test case:
|
|
193
|
+
|
|
194
|
+
```bash
|
|
195
|
+
bun test --test-name-pattern="Developer login and token storage" src/lib/developer.test.ts --env-file .env.local
|
|
196
|
+
```
|
|
197
|
+
|
|
192
198
|
Currently this build step requires `npx` because of [a Bun incompatibility with `vite-plugin-dts`](https://github.com/OpenSecretCloud/OpenSecret-SDK/issues/16).
|
|
193
199
|
|
|
194
200
|
To pack the library (for publishing) run the following command:
|