Command

Enum Command 

Source
pub enum Command {
    Build(BuildOptions),
    Pack {
        pkg_directory: PathBuf,
        path: Option<PathBuf>,
    },
    Generate {
        name: String,
        template: String,
        mode: InstallMode,
    },
    Publish {
        target: String,
        access: Option<Access>,
        tag: Option<String>,
        pkg_directory: PathBuf,
        path: Option<PathBuf>,
    },
    Login {
        registry: Option<String>,
        scope: Option<String>,
        auth_type: Option<String>,
    },
    Test(TestOptions),
}
Expand description

The various kinds of commands that wasm-pack can execute.

Variantsยง

ยง

Build(BuildOptions)

๐Ÿ—๏ธ build your npm package!

ยง

Pack

๐Ÿฑ create a tar of your npm package but donโ€™t publish!

Fields

ยงpkg_directory: PathBuf

The name of the output directory where the npm package is stored

ยงpath: Option<PathBuf>

The path to the Rust crate. If not set, searches up the path from the current directory.

ยง

Generate

๐Ÿ‘ create a new project with a template

Fields

ยงname: String

The name of the project

ยงtemplate: String

The URL to the template

ยงmode: InstallMode

Should we install or check the presence of binary tools. [possible values: no-install, normal, force]

ยง

Publish

๐ŸŽ† pack up your npm package and publish!

Fields

ยงtarget: String

Sets the target environment. [possible values: bundler, nodejs, web, no-modules]

ยงaccess: Option<Access>

The access level for the package to be published

ยงtag: Option<String>

The distribution tag being used for publishing. See https://docs.npmjs.com/cli/dist-tag

ยงpkg_directory: PathBuf

The name of the output directory where the npm package is stored

ยงpath: Option<PathBuf>

The path to the Rust crate. If not set, searches up the path from the current directory.

ยง

Login

๐Ÿ‘ค Add an npm registry user account! (aliases: adduser, add-user)

Fields

ยงregistry: Option<String>

Default: โ€˜https://registry.npmjs.org/โ€™. The base URL of the npm package registry. If scope is also specified, this registry will only be used for packages with that scope. scope defaults to the scope of the project directory youโ€™re currently in, if any.

ยงscope: Option<String>

Default: none. If specified, the user and login credentials given will be associated with the specified scope.

ยงauth_type: Option<String>

Default: โ€˜legacyโ€™. Type: โ€˜legacyโ€™, โ€˜ssoโ€™, โ€˜samlโ€™, โ€˜oauthโ€™. What authentication strategy to use with adduser/login. Some npm registries (for example, npmE) might support alternative auth strategies besides classic username/password entry in legacy npm.

ยง

Test(TestOptions)

๐Ÿ‘ฉโ€๐Ÿ”ฌ test your wasm!

Trait Implementationsยง

Sourceยง

impl Debug for Command

Sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Sourceยง

impl FromArgMatches for Command

Sourceยง

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Sourceยง

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Sourceยง

fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Sourceยง

fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Sourceยง

impl Subcommand for Command

Sourceยง

fn augment_subcommands<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate Self via FromArgMatches::from_arg_matches_mut Read more
Sourceยง

fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate self via FromArgMatches::update_from_arg_matches_mut Read more
Sourceยง

fn has_subcommand(__clap_name: &str) -> bool

Test whether Self can parse a specific subcommand

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

impl<T> Same for T

Sourceยง

type Output = T

Should always be Self
Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.