Skip to content

Commit

Permalink
Bump npm cli to alpha 14
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed Mar 31, 2020
1 parent 8cf9196 commit 15fa23f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e-tests/Runner.re
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let () = {
run(makeCommand("yarn"), [||]);
run(makeCommand("yarn"), [|"run", "package"|]);
run(makeCommand("npm"), [|"pack"|]);
run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-dev.tgz"|]);
run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.14.tgz"|]);
chdir(cwd);
};

Expand Down
2 changes: 1 addition & 1 deletion npm-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pesy",
"version": "0.5.0-dev",
"version": "0.5.0-alpha.14",
"bin": {
"pesy": "pesy"
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ call esy build
call esy npm-release
call cd _release
call npm pack
call npm install -g ./pesy-0.5.0-dev.tgz
call npm install -g ./pesy-0.5.0-alpha.14.tgz
call cd ..
call .\_build\install\default\bin\TestPesyConfigure.exe
2 changes: 1 addition & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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-dev
version=0.5.0-alpha.14

function cleanup {

Expand Down

0 comments on commit 15fa23f

Please sign in to comment.