Skip to content

Commit 411d24f

Browse files
authored
Update README.md
1 parent 7eb2c4f commit 411d24f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,30 +54,30 @@ yarn add npm-pack-all
5454

5555
## Use
5656
```bash
57-
node node_modules/npm-pack-all <optional options>
57+
node node_modules/.bin/npm-pack-all <optional options>
5858
```
5959

6060
### Basic
6161
```bash
62-
node node_modules/npm-pack-all
62+
node node_modules/.bin/npm-pack-all
6363
```
6464

6565
### Options
6666
#### --output
6767
Output your .tgz artifact to a different directory (or with a different name)
6868
```bash
69-
node node_modules/npm-pack-all --output build/
69+
node node_modules/.bin/npm-pack-all --output build/
7070
```
7171

7272
OR
7373

7474
```bash
75-
node node_modules/npm-pack-all --output build/artifact.tgz
75+
node node_modules/.bin/npm-pack-all --output build/artifact.tgz
7676
```
7777

7878
#### --dev-deps
7979
Bundle all production dependencies AND devDependencies in the artifact
8080
(use with care -- your artifact will balloon)
8181
```bash
82-
node node_modules/npm-pack-all --dev-deps --output build/artifact.tgz
82+
node node_modules/.bin/npm-pack-all --dev-deps --output build/artifact.tgz
8383
```

0 commit comments

Comments
 (0)