File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -54,30 +54,30 @@ yarn add npm-pack-all
54
54
55
55
## Use
56
56
```bash
57
- node node_modules/npm-pack-all <optional options>
57
+ node node_modules/.bin/ npm-pack-all <optional options>
58
58
```
59
59
60
60
### Basic
61
61
```bash
62
- node node_modules/npm-pack-all
62
+ node node_modules/.bin/ npm-pack-all
63
63
```
64
64
65
65
### Options
66
66
#### --output
67
67
Output your .tgz artifact to a different directory (or with a different name)
68
68
```bash
69
- node node_modules/npm-pack-all --output build/
69
+ node node_modules/.bin/ npm-pack-all --output build/
70
70
```
71
71
72
72
OR
73
73
74
74
```bash
75
- node node_modules/npm-pack-all --output build/artifact.tgz
75
+ node node_modules/.bin/ npm-pack-all --output build/artifact.tgz
76
76
```
77
77
78
78
#### --dev-deps
79
79
Bundle all production dependencies AND devDependencies in the artifact
80
80
(use with care -- your artifact will balloon)
81
81
```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
83
83
```
You can’t perform that action at this time.
0 commit comments