@orangemug/oops 0.2.0 → 0.2.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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Find out with `oops`
|
|
|
10
10
|
npx @orangemug/oops --help
|
|
11
11
|
# ./oops <dangerous_package_versions>
|
|
12
12
|
#
|
|
13
|
-
# Example: npx @orangemug/oops @ctrl/tinycolor:4.1.1 @ctrl/tinycolor:4.1.2
|
|
13
|
+
# Example: npx @orangemug/oops '@ctrl/tinycolor:4.1.1' '@ctrl/tinycolor:4.1.2'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
You can attach this command to a bug tracker ticket somewhere in your company/organisation
|
|
@@ -19,8 +19,8 @@ You can attach this command to a bug tracker ticket somewhere in your company/or
|
|
|
19
19
|
>
|
|
20
20
|
> ```bash
|
|
21
21
|
> npx @orangemug/oops \
|
|
22
|
-
> @ctrl/tinycolor:4.1.1 \
|
|
23
|
-
> @ctrl/tinycolor:4.1.2
|
|
22
|
+
> '@ctrl/tinycolor:4.1.1' \
|
|
23
|
+
> '@ctrl/tinycolor:4.1.2'
|
|
24
24
|
> ```
|
|
25
25
|
|
|
26
26
|
The examples are from <https://orca.security/resources/blog/npm-malware-campaign-tinycolor/>
|