@myooken/license-output 0.3.0 → 0.3.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 +26 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,31 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Deprecated
|
|
2
|
+
|
|
3
|
+
⚠️ **This package is deprecated.**
|
|
4
|
+
Please use **[`node-module-license-output`](https://www.npmjs.com/package/node-module-license-output)** instead.
|
|
5
|
+
|
|
6
|
+
> This package has been renamed from `@myooken/license-output` to
|
|
7
|
+
> **`node-module-license-output`** to provide a non-scoped, easier-to-discover name.
|
|
8
|
+
> All new development and maintenance continue in the new package.
|
|
9
|
+
|
|
10
|
+
## Migration
|
|
11
|
+
|
|
12
|
+
### Install
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install node-module-license-output
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Replace
|
|
2
19
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
20
|
+
* Before: `npm install @myooken/license-output`
|
|
21
|
+
* After : `npm install node-module-license-output`
|
|
22
|
+
|
|
23
|
+
> Note: Update the package name in your CLI usage and imports from
|
|
24
|
+
> `@myooken/license-output` → `node-module-license-output`.
|
|
25
|
+
|
|
26
|
+
# Third-Party License Output for node_modules
|
|
6
27
|
|
|
7
|
-
https://www.npmjs.com/package
|
|
28
|
+
https://www.npmjs.com/package/node-module-license-output
|
|
8
29
|
|
|
9
30
|
### What is this?
|
|
10
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myooken/license-output",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Generate third-party-license markdown by scanning licenses in node_modules.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
".": "./src/core.js"
|
|
26
26
|
},
|
|
27
27
|
"bin": {
|
|
28
|
-
"third-party-license": "
|
|
28
|
+
"third-party-license": "src/cli.js"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"src",
|