@safets-org/cli 1.0.0 → 1.0.1
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 +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,18 @@ Cannot read properties of undefined (reading 'name')
|
|
|
16
16
|
npm install --save-dev @safets-org/cli typescript
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
With Bun:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
bun add -D @safets-org/cli typescript
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
With pnpm:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pnpm add -D @safets-org/cli typescript
|
|
29
|
+
```
|
|
30
|
+
|
|
19
31
|
No runtime TypeScript loader is required. SafeTS uses the TypeScript compiler already in your project.
|
|
20
32
|
|
|
21
33
|
The npm package is scoped as `@safets-org/cli`, but the installed command is still `safets`.
|
|
@@ -133,7 +145,7 @@ The baseline stores scan options such as `includeTests`. If you run `doctor --fa
|
|
|
133
145
|
SafeTS can run directly in GitHub Actions:
|
|
134
146
|
|
|
135
147
|
```yaml
|
|
136
|
-
- uses: Dioman-Keita/safets@v1.0.
|
|
148
|
+
- uses: Dioman-Keita/safets@v1.0.1
|
|
137
149
|
with:
|
|
138
150
|
fail-on-new: "true"
|
|
139
151
|
```
|