@hasindu---7/ff-link-extract 2.0.6 → 2.0.7
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/bin/postinstall_message.js +24 -0
- package/package.json +5 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
const packageRoot = path.resolve(__dirname, "..");
|
|
6
|
+
const readmePath = path.join(packageRoot, "README.md");
|
|
7
|
+
|
|
8
|
+
const lines = [
|
|
9
|
+
"",
|
|
10
|
+
"==============================================",
|
|
11
|
+
" ff-link-extract installed successfully",
|
|
12
|
+
"==============================================",
|
|
13
|
+
"README location:",
|
|
14
|
+
` ${readmePath}`,
|
|
15
|
+
"",
|
|
16
|
+
"Quick start order:",
|
|
17
|
+
" 1. npm exec ff-link-extract-init",
|
|
18
|
+
" 2. Add your page links to urls.txt",
|
|
19
|
+
" 3. npm exec ff-link-extract",
|
|
20
|
+
" 4. npm exec ff-link-extract-autorun (optional)",
|
|
21
|
+
"",
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
console.log(lines.join("\n"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasindu---7/ff-link-extract",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Extract direct fuckingfast download links from page URLs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -8,11 +8,15 @@
|
|
|
8
8
|
"ff-link-extract-autorun": "bin/ff_extract_links_autorun.js",
|
|
9
9
|
"ff-link-extract-init": "bin/ff_extract_links_init.js"
|
|
10
10
|
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"postinstall": "node bin/postinstall_message.js"
|
|
13
|
+
},
|
|
11
14
|
"type": "commonjs",
|
|
12
15
|
"files": [
|
|
13
16
|
"bin/ff_extract_links.js",
|
|
14
17
|
"bin/ff_extract_links_autorun.js",
|
|
15
18
|
"bin/ff_extract_links_init.js",
|
|
19
|
+
"bin/postinstall_message.js",
|
|
16
20
|
"templates/autorun.config.json",
|
|
17
21
|
"templates/urls.txt",
|
|
18
22
|
"LICENSE",
|