<!-- Note: Please search to see if an issue already exists for your problem: https://github.com/npm/cli/issues --> ### Current Behavior: postpack script runs **BEFORE** the tarball has been generated and moved to its final destination. <!-- ex. a clear & concise description of what you're experiencing. --> ### Expected Behavior: As is in the documentation: ```Runs AFTER the tarball has been generated and moved to its final destination.``` <!-- ex. a clear & concise description of what you expected to happen. --> ### Steps To Reproduce: copy this package.json to an empty directory ``` { "name": "postpacktest", "version": "1.0.0", "scripts": { "prepack": "rm postpacktest-1.0.0.tgz", "postpack": "ls -al" } } ``` run: ```npm pack``` and then ```ls -al``` <!-- ex. steps to reproduce the behavior: 1. In this environment... 2. With this config... 3. Run '...' 4. See error... --> ### Environment: *nix <!-- ex. - OS: Ubuntu 20.04 - Node: 13.14.0 - npm: 6.4.12 -->