diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-23 04:02:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 04:02:21 +0800 |
commit | e915d72202f66155e74e22cf7df66d37e726f38f (patch) | |
tree | b5b3ffb9cac2543447de829cfbee896b1c149812 | |
parent | 80e52464a6fdf9576776214f77e46d441b959b06 (diff) | |
parent | 86cb89feef9a83603426c2fd2260ea1045b46018 (diff) | |
download | dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.tar dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.tar.gz dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.tar.bz2 dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.tar.lz dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.tar.xz dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.tar.zst dexon-sol-tools-e915d72202f66155e74e22cf7df66d37e726f38f.zip |
Merge pull request #996 from 0xProject/fix/npm-auto-login-delay
fix: Increase delay for non-interactive npm login
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index c6b0ac2dd..fa93108c2 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "test:installation": "node ./packages/monorepo-scripts/lib/test_installation.js", "test:installation:local": "IS_LOCAL_PUBLISH=true node ./packages/monorepo-scripts/lib/test_installation.js", "test:publish:circleci:comment": "HACK(albrow) We need an automated way to login to npm and echo+sleep piped to stdin was the only way I could find to do it.", - "test:publish:circleci": "{ echo \"test\"; sleep 1; echo \"test\"; sleep 1; echo \"test@example.com\"; } | npm login --registry=http://localhost:4873 && IS_LOCAL_PUBLISH=true run-s script:publish test:installation:local", + "test:publish:circleci": "{ echo \"test\"; sleep 2; echo \"test\"; sleep 2; echo \"test@example.com\"; } | npm login --registry=http://localhost:4873 && IS_LOCAL_PUBLISH=true run-s script:publish test:installation:local", "run:publish": "run-s install:all build:monorepo_scripts script:prepublish_checks rebuild:no_website script:publish", "run:publish:local": "IS_LOCAL_PUBLISH=true yarn run:publish", "script:prepublish_checks": "node ./packages/monorepo-scripts/lib/prepublish_checks.js", |