@@ -74,7 +74,6 @@ impl Build {
74
74
let crate_name = manifest:: get_crate_name ( & crate_path) ?;
75
75
let mode = match build_opts. mode . as_str ( ) {
76
76
"no-install" => BuildMode :: Noinstall ,
77
- "normal" => BuildMode :: Normal ,
78
77
_ => BuildMode :: Normal ,
79
78
} ;
80
79
// let build_config = manifest::xxx(&crate_path).xxx();
@@ -107,14 +106,14 @@ impl Build {
107
106
info ! ( & log, "Done in {}." , & duration) ;
108
107
info ! (
109
108
& log,
110
- "Your WASM pkg is ready to publish at {:#?}." ,
109
+ "Your wasm pkg is ready to publish at {:#?}." ,
111
110
& self . crate_path. join( "pkg" )
112
111
) ;
113
112
114
113
PBAR . message ( & format ! ( "{} Done in {}" , emoji:: SPARKLE , & duration) ) ;
115
114
116
115
PBAR . message ( & format ! (
117
- "{} Your WASM pkg is ready to publish at {:#?}." ,
116
+ "{} Your wasm pkg is ready to publish at {:#?}." ,
118
117
emoji:: PACKAGE ,
119
118
& self . crate_path. join( "pkg" )
120
119
) ) ;
@@ -220,7 +219,7 @@ impl Build {
220
219
}
221
220
222
221
fn step_install_wasm_bindgen ( & mut self , step : & Step , log : & Logger ) -> Result < ( ) , Error > {
223
- info ! ( & log, "Identifying WASM -bindgen dependency..." ) ;
222
+ info ! ( & log, "Identifying wasm -bindgen dependency..." ) ;
224
223
let bindgen_version = manifest:: get_wasm_bindgen_version ( & self . crate_path ) ?;
225
224
info ! ( & log, "Installing wasm-bindgen-cli..." ) ;
226
225
let install_permitted = match self . mode {
0 commit comments