-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Bugthing that needs fixingthing that needs fixingPriority 2secondary priority issuesecondary priority issueRelease 8.xwork is associated with a specific npm 8 releasework is associated with a specific npm 8 release
Description
Is there an existing issue for this?
- I have searched the existing issues
This issue exists in the latest npm version
- I am using the latest npm
Current Behavior
I noticed this change when GitHub Actions bumped Node 12 from v12.13.1 to 12.22.7 and I can replicate it locally.
npm pack --silent should only output the generated archive name, but it ends up also printing the scripts information:
❯ npm pack --silent
> [email protected] prepack
> tsc --sourceMap false
content-scripts-register-polyfill-3.1.0.tgz
Note: This also happens when .npmrc includes the silent log level (which works correctly for the regular npm pack output)
I pinpointed it to this line:
Line 53 in 4dbeb00
| const tarballData = await libpack(arg, this.npm.flatOptions) |
The function expects a log object to appear in that options object, but it's not there. Here's that "flatOptions" object (without private information):
{
_auth: null,
access: null,
all: false,
allowSameVersion: false,
omit: [],
audit: true,
auditLevel: null,
authType: 'legacy',
before: null,
binLinks: true,
browser: null,
ca: null,
call: '',
cert: null,
ciName: null,
cidr: null,
color: true,
commitHooks: true,
depth: null,
search: {
limit: 20,
description: true,
exclude: '',
opts: [Object: null prototype] {},
staleness: 900
},
diff: [],
diffIgnoreAllSpace: false,
diffNameOnly: false,
diffNoPrefix: false,
diffDstPrefix: 'b/',
diffSrcPrefix: 'a/',
diffText: false,
diffUnified: 3,
dryRun: false,
editor: 'vi',
engineStrict: false,
retry: { retries: 2, factor: 10, maxTimeout: 60000, minTimeout: 10000 },
timeout: 300000,
force: false,
foregroundScripts: false,
formatPackageLock: true,
fund: true,
git: 'git',
gitTagVersion: true,
global: false,
globalStyle: false,
globalconfig: '/usr/local/etc/npmrc',
heading: 'npm',
httpsProxy: null,
ifPresent: false,
ignoreScripts: false,
includeStaged: false,
json: false,
key: null,
legacyBundling: false,
legacyPeerDeps: false,
localAddress: null,
location: 'user',
maxSockets: 15,
message: '%s',
nodeVersion: 'v16.4.2',
noProxy: '',
npmVersion: '8.2.0',
offline: false,
otp: null,
package: [],
packageLock: true,
packageLockOnly: false,
parseable: false,
preferOffline: false,
preferOnline: false,
preid: '',
proxy: null,
readOnly: false,
rebuildBundle: true,
registry: 'https://registry.npmjs.org/',
save: true,
saveBundle: false,
savePrefix: '^',
projectScope: '',
scriptShell: undefined,
shell: '/usr/local/bin/fish',
signGitCommit: false,
signGitTag: false,
ssoPollFrequency: 500,
ssoType: 'oauth',
strictPeerDeps: false,
strictSSL: true,
defaultTag: 'latest',
tagVersionPrefix: 'v',
umask: 0,
npmCommand: 'pack'
}
Expected Behavior
❯ npm pack --silent
content-scripts-register-polyfill-3.1.0.tgz
Steps To Reproduce
echo '{"name":"name", "version": "1", "scripts": {"prepack":"true"}}' > package.json
npm pack --silentEnvironment
- npm: 8.2.0
- Node: v16.4.2
- OS: macOS 11.6.1 or Ubuntu 14
- npm config: default config
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Bugthing that needs fixingthing that needs fixingPriority 2secondary priority issuesecondary priority issueRelease 8.xwork is associated with a specific npm 8 releasework is associated with a specific npm 8 release