File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ const getPlatform = () => {
2828const getBinary = ( ) => {
2929 const platform = getPlatform ( ) ;
3030 const version = require ( "./package.json" ) . version ;
31- const author = "rustwasm " ;
31+ const author = "drager " ;
3232 const name = "wasm-pack" ;
3333 const url = `https://github.com/${ author } /${ name } /releases/download/v${ version } /${ name } -v${ version } -${ platform } .tar.gz` ;
3434 return new Binary ( platform === windows ? "wasm-pack.exe" : "wasm-pack" , url , {
35- installDirectory : join ( __dirname , "binary" )
35+ installDirectory : join ( __dirname , "binary" ) ,
3636 } ) ;
3737} ;
3838
@@ -44,7 +44,7 @@ const install = () => {
4444const run = ( ) => {
4545 const binary = getBinary ( ) ;
4646 binary . run ( ) ;
47- }
47+ } ;
4848
4949module . exports = {
5050 install,
You can’t perform that action at this time.
0 commit comments