pinme 2.0.10 → 2.0.12
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 +27 -0
- package/dist/index.js +6503 -3469
- package/package.json +25 -14
package/README.md
CHANGED
|
@@ -17,6 +17,14 @@ It lets you quickly set up and launch a complete project with an integrated fron
|
|
|
17
17
|
|
|
18
18
|
Website: [https://pinme.eth.limo/](https://pinme.eth.limo/)
|
|
19
19
|
|
|
20
|
+
> **PinMe Skill**
|
|
21
|
+
>
|
|
22
|
+
> Install the PinMe skill before using PinMe in agent workflows:
|
|
23
|
+
>
|
|
24
|
+
> ```bash
|
|
25
|
+
> npx skills add glitternetwork/pinme
|
|
26
|
+
> ```
|
|
27
|
+
|
|
20
28
|
## Table of Contents
|
|
21
29
|
|
|
22
30
|
- [Quick Start](#quick-start)
|
|
@@ -26,6 +34,7 @@ Website: [https://pinme.eth.limo/](https://pinme.eth.limo/)
|
|
|
26
34
|
- [Authentication and Account Commands](#authentication-and-account-commands)
|
|
27
35
|
- [Static Uploads and IPFS Utilities](#static-uploads-and-ipfs-utilities)
|
|
28
36
|
- [Command Reference](#command-reference)
|
|
37
|
+
- [Development and Testing](#development-and-testing)
|
|
29
38
|
- [Limits and Operational Notes](#limits-and-operational-notes)
|
|
30
39
|
- [Examples](#examples)
|
|
31
40
|
- [Support](#support)
|
|
@@ -340,6 +349,24 @@ pinme rm <value>
|
|
|
340
349
|
| `pinme list` / `pinme ls` | Show upload history |
|
|
341
350
|
| `pinme help` | Show CLI help |
|
|
342
351
|
|
|
352
|
+
## Development and Testing
|
|
353
|
+
|
|
354
|
+
PinMe uses Vitest for unit/integration tests, real `dist/index.js` CLI smoke tests, npm package checks, and Stryker for slower mutation testing.
|
|
355
|
+
|
|
356
|
+
```bash
|
|
357
|
+
npm run test # Unit and integration tests
|
|
358
|
+
npm run test:coverage # Coverage gate for core modules
|
|
359
|
+
npm run test:cli # Real CLI black-box tests
|
|
360
|
+
npm run test:pack # npm pack/package-shape checks
|
|
361
|
+
npm run verify # Full pull-request gate
|
|
362
|
+
npm run test:mutation # Slow mutation tests for manual/nightly runs
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
Tests must not call live PinMe/IPFS/CAR services. Use `nock`, local loopback servers, fixtures, and temporary HOME directories for API and CLI scenarios.
|
|
366
|
+
|
|
367
|
+
For the full testing policy, layout, and mutation-testing guidance, see
|
|
368
|
+
[TESTING.md](TESTING.md).
|
|
369
|
+
|
|
343
370
|
## Limits and Operational Notes
|
|
344
371
|
|
|
345
372
|
- Default single-file upload limit: `100MB`
|