Skip to content

Commit 9cecbfc

Browse files
committed
Removed 'NOT IMPLEMENTED' flags from commands that are now implemented.
1 parent 4e98b42 commit 9cecbfc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

β€Žsrc/command.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ use PBAR;
1717
#[derive(Debug, StructOpt)]
1818
pub enum Command {
1919
#[structopt(name = "init")]
20-
/// 🐣 initialize a package.json based on your compiled wasm
20+
/// 🐣 initialize a package.json based on your compiled wasm!
2121
Init {
2222
path: Option<String>,
2323
#[structopt(long = "scope", short = "s")]
2424
scope: Option<String>,
2525
},
2626
#[structopt(name = "pack")]
27-
/// 🍱 create a tar of your npm package but don't publish! [NOT IMPLEMENTED]
27+
/// 🍱 create a tar of your npm package but don't publish!
2828
Pack { path: Option<String> },
2929
#[structopt(name = "publish")]
30-
/// πŸŽ† pack up your npm package and publish! [NOT IMPLEMENTED]
30+
/// πŸŽ† pack up your npm package and publish!
3131
Publish { path: Option<String> },
3232
}
3333

0 commit comments

Comments
Β (0)