ppx-inject 0.3.12 → 0.3.15
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 -7
- package/dist/cli.cjs +55225 -0
- package/package.json +17 -10
- package/lib/cli.js +0 -104
- package/lib/cli.js.map +0 -1
- package/lib/profile.js +0 -81
- package/lib/profile.js.map +0 -1
- package/lib/split-string-according-to-length-and-delimiter.js +0 -20
- package/lib/split-string-according-to-length-and-delimiter.js.map +0 -1
- package/lib/statistics-file.js +0 -35
- package/lib/statistics-file.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# ppx-inject
|
|
2
|
-
|
|
3
2
|
The CLI program that inject Direct access rules into Proxifier's profile.
|
|
4
3
|
|
|
5
4
|
## Install
|
|
6
|
-
|
|
7
5
|
```powershell
|
|
8
6
|
npm install -g ppx-inject
|
|
9
7
|
# or
|
|
@@ -11,17 +9,16 @@ yarn global add ppx-inject
|
|
|
11
9
|
```
|
|
12
10
|
|
|
13
11
|
### Install from source
|
|
14
|
-
|
|
15
12
|
```powershell
|
|
16
13
|
git clone git@github.com:BlackGlory/ppx-inject.git
|
|
17
14
|
cd ppx-inject
|
|
18
15
|
yarn install
|
|
19
16
|
yarn build
|
|
17
|
+
yarn bundle
|
|
20
18
|
yarn global add "file:$(pwd)"
|
|
21
19
|
```
|
|
22
20
|
|
|
23
21
|
## Usage
|
|
24
|
-
|
|
25
22
|
```
|
|
26
23
|
Usage: ppx-inject [options] <profile>
|
|
27
24
|
|
|
@@ -33,8 +30,7 @@ Options:
|
|
|
33
30
|
-h, --help display help for command
|
|
34
31
|
```
|
|
35
32
|
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
Example:
|
|
38
34
|
```powershell
|
|
39
|
-
|
|
35
|
+
ppx-inject --cc=CN --cc=HK --cc=MO .\Default.ppx
|
|
40
36
|
```
|