File tree Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -263,3 +263,15 @@ This will run `esbuild`'s postinstall script and also add it to the `onlyBuiltDe
263
263
### --filter < ; package_selector\>
264
264
265
265
[ Read more about filtering.] ( ../filtering.md )
266
+
267
+ import CpuFlag from '../settings/_ cpuFlag.mdx'
268
+
269
+ <CpuFlag />
270
+
271
+ import OsFlag from '../settings/_ osFlag.mdx'
272
+
273
+ <OsFlag />
274
+
275
+ import LibcFlag from '../settings/_ libcFlag.mdx'
276
+
277
+ <LibcFlag />
Original file line number Diff line number Diff line change @@ -180,3 +180,15 @@ dependencies.
180
180
### --resolution-only
181
181
182
182
Re-runs resolution: useful for printing out peer dependency issues.
183
+
184
+ import CpuFlag from '../settings/_ cpuFlag.mdx'
185
+
186
+ <CpuFlag />
187
+
188
+ import OsFlag from '../settings/_ osFlag.mdx'
189
+
190
+ <OsFlag />
191
+
192
+ import LibcFlag from '../settings/_ libcFlag.mdx'
193
+
194
+ <LibcFlag />
Original file line number Diff line number Diff line change
1
+ ### --cpu=< ; name\>
2
+
3
+ Added in: v10.14.0
4
+
5
+ Override CPU architecture of native modules to install. Acceptable values are same as ` cpu ` field of ` package.json ` , which comes from ` process.arch ` .
Original file line number Diff line number Diff line change
1
+ ### --libc=< ; name\>
2
+
3
+ Added in: v10.14.0
4
+
5
+ Override libc of native modules to install. Acceptable values are same as ` libc ` field of ` package.json ` .
6
+
Original file line number Diff line number Diff line change
1
+ ### --os=< ; name\>
2
+
3
+ Added in: v10.14.0
4
+
5
+ Override OS of native modules to install. Acceptable values are same as ` os ` field of ` package.json ` , which comes from ` process.platform ` .
You can’t perform that action at this time.
0 commit comments