diff --git a/bin/Pesy.re b/bin/Pesy.re index 534eb011..0c28613b 100644 --- a/bin/Pesy.re +++ b/bin/Pesy.re @@ -211,7 +211,7 @@ let pesy_build = () => ) ); -let version = "0.5.0-alpha.4"; +let version = "0.5.0-alpha.5"; let cmd = () => { open Cmdliner.Term; diff --git a/e2e-tests/Runner.re b/e2e-tests/Runner.re index b8fd8279..0da3f09a 100644 --- a/e2e-tests/Runner.re +++ b/e2e-tests/Runner.re @@ -30,7 +30,7 @@ chdir(Path.(cwd / "npm-cli")); print_endline("Installing pesy globally.."); run(makeCommand("npm"), [|"run", "rollup"|]); run(makeCommand("npm"), [|"pack"|]); -run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.4.tgz"|]); +run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.5.tgz"|]); chdir(cwd); let testBootstrapperExe = @@ -53,13 +53,12 @@ exit( [||], ~env= Array.append( - [|sprintf("PESY_CLONE_PATH=%s", - Str.global_replace( - Str.regexp("\\"), - "/", - Sys.getcwd(), + [| + sprintf( + "PESY_CLONE_PATH=%s", + Str.global_replace(Str.regexp("\\"), "/", Sys.getcwd()), ), - )|], + |], Unix.environment(), ), ), diff --git a/npm-cli/package-lock.json b/npm-cli/package-lock.json index 266a82d3..d641c175 100644 --- a/npm-cli/package-lock.json +++ b/npm-cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "pesy", - "version": "0.5.0-alpha.4", + "version": "0.5.0-alpha.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/npm-cli/package.json b/npm-cli/package.json index 6c5d2c1c..10361b05 100644 --- a/npm-cli/package.json +++ b/npm-cli/package.json @@ -1,6 +1,6 @@ { "name": "pesy", - "version": "0.5.0-alpha.4", + "version": "0.5.0-alpha.5", "bin": { "pesy": "pesy" }, diff --git a/npm-cli/src/Spinner.bs.js b/npm-cli/src/Spinner.bs.js index 764d798b..29ab2350 100644 --- a/npm-cli/src/Spinner.bs.js +++ b/npm-cli/src/Spinner.bs.js @@ -28,13 +28,13 @@ function start(msg) { /* String */Block.__(2, [ /* No_padding */0, /* String_literal */Block.__(11, [ - " \r", + " \r", /* End_of_format */0 ]) ]) ]) ]), - "%s %s \r" + "%s %s \r" ]), msg, Caml_array.caml_array_get(frames, Caml_int32.mod_(i[0], n_frames))); i[0] = i[0] + 1 | 0; return /* () */0; diff --git a/package.json b/package.json index cc7afd95..3f040d0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pesy", - "version": "0.5.0-alpha.4", + "version": "0.5.0-alpha.5", "description": "\"Esy Pesy\" - Your Esy Assistant.", "esy": { "buildsInSource": "_build", diff --git a/scripts/run.sh b/scripts/run.sh index d789070f..be502cfc 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -6,7 +6,7 @@ root=$PWD custom_registry_url=http://localhost:4873 original_npm_registry_url=https://registry.npmjs.org # `npm get registry` original_yarn_registry_url=https://registry.yarnpkg.com # `yarn config get registry` -version=0.5.0-alpha.4 +version=0.5.0-alpha.5 function cleanup {