-
-
Notifications
You must be signed in to change notification settings - Fork 812
/
Copy pathusage.txt
34 lines (30 loc) · 2.05 KB
/
usage.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Usage: browserify-string [options] [<string>]
Options:
-h, --help Print this message.
-V, --version Print the package version.
--standalone name Generate a UMD bundle with the supplied export
name. The generated bundle will work with other
module systems. If no module system is found, the
export name is attached to the `window` global.
--export-name name Bundle export target. The target is the name used
to load the bundle from the external environment.
In contrast to a standalone UMD bundle, a require
function is exposed as a global variable.
--require-name name External `require` name to support requiring
packages within a browserify bundle from the
external environment.
-t, --transform module Apply a transform when bundling. To apply
multiple transforms, set a --transform flag
for each transform.
-p, --plugin module Register a plugin. To register multiple plugins,
set a --plugin flag for each plugin.
-u, --external module Omit a module from an output bundle. Omitted
modules are assumed to be present in a separate
external bundle. To omit multiple modules, set an
--external flag for each module to omit.
--path path Directory paths in which to search for modules
referenced using non-relative paths. To specify
multiple directories, set a --path flag for each
directory to search.
--basedir path Directory from which to resolve relative paths.
Default: current working directory.