We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e98b42 commit 9cecbfcCopy full SHA for 9cecbfc
src/command.rs
@@ -17,17 +17,17 @@ use PBAR;
17
#[derive(Debug, StructOpt)]
18
pub enum Command {
19
#[structopt(name = "init")]
20
- /// 🐣 initialize a package.json based on your compiled wasm
+ /// 🐣 initialize a package.json based on your compiled wasm!
21
Init {
22
path: Option<String>,
23
#[structopt(long = "scope", short = "s")]
24
scope: Option<String>,
25
},
26
#[structopt(name = "pack")]
27
- /// 🍱 create a tar of your npm package but don't publish! [NOT IMPLEMENTED]
+ /// 🍱 create a tar of your npm package but don't publish!
28
Pack { path: Option<String> },
29
#[structopt(name = "publish")]
30
- /// 🎆 pack up your npm package and publish! [NOT IMPLEMENTED]
+ /// 🎆 pack up your npm package and publish!
31
Publish { path: Option<String> },
32
}
33
0 commit comments