UNPKG

@pika/pack

Version:
1 lines 249 kB
{"version":3,"file":"index.js","sources":["../dist-src/util/misc.js","../dist-src/reporters/format.js","../dist-src/reporters/lang/en.js","../dist-src/reporters/base-reporter.js","../dist-src/reporters/console/helpers/tree-helper.js","../dist-src/reporters/console/util.js","../dist-src/reporters/console/progress-bar.js","../dist-src/reporters/console/spinner-progress.js","../dist-src/reporters/console/console-reporter.js","../dist-src/reporters/json-reporter.js","../dist-src/constants.js","../dist-src/util/map.js","../dist-src/util/fs.js","../dist-src/util/normalize-manifest/for-publish.js","../dist-src/commands/build.js","../dist-src/util/normalize-manifest/typos.js","../dist-src/util/normalize-manifest/validate.js","../dist-src/util/normalize-manifest/util.js","../dist-src/util/normalize-manifest/licenses.js","../dist-src/util/normalize-manifest/infer-license.js","../dist-src/util/normalize-manifest/fix.js","../dist-src/util/normalize-manifest/index.js","../dist-src/util/blocking-queue.js","../dist-src/errors.js","../dist-src/util/child.js","../dist-src/util/fix-cmd-win-slashes.js","../dist-src/util/execute-lifecycle-script.js","../dist-src/config.js","../dist-src/util/signal-handler.js","../dist-src/util/conversion.js","../dist-src/index.js"],"sourcesContent":["/* @flow */\nexport function sortAlpha(a, b) {\n // sort alphabetically in a deterministic way\n const shortLen = Math.min(a.length, b.length);\n for (let i = 0; i < shortLen; i++) {\n const aChar = a.charCodeAt(i);\n const bChar = b.charCodeAt(i);\n if (aChar !== bChar) {\n return aChar - bChar;\n }\n }\n return a.length - b.length;\n}\nexport function sortOptionsByFlags(a, b) {\n const aOpt = a.flags.replace(/-/g, '');\n const bOpt = b.flags.replace(/-/g, '');\n return sortAlpha(aOpt, bOpt);\n}\nexport function entries(obj) {\n const entries = [];\n if (obj) {\n for (const key in obj) {\n entries.push([key, obj[key]]);\n }\n }\n return entries;\n}\nexport function removePrefix(pattern, prefix) {\n if (pattern.startsWith(prefix)) {\n pattern = pattern.slice(prefix.length);\n }\n return pattern;\n}\nexport function removeSuffix(pattern, suffix) {\n if (pattern.endsWith(suffix)) {\n return pattern.slice(0, -suffix.length);\n }\n return pattern;\n}\nexport function addSuffix(pattern, suffix) {\n if (!pattern.endsWith(suffix)) {\n return pattern + suffix;\n }\n return pattern;\n}\nexport function hyphenate(str) {\n return str.replace(/[A-Z]/g, match => {\n return '-' + match.charAt(0).toLowerCase();\n });\n}\nexport function compareSortedArrays(array1, array2) {\n if (array1.length !== array2.length) {\n return false;\n }\n for (let i = 0, len = array1.length; i < len; i++) {\n if (array1[i] !== array2[i]) {\n return false;\n }\n }\n return true;\n}\nexport function sleep(ms) {\n return new Promise(resolve => {\n setTimeout(resolve, ms);\n });\n}\n","function formatFunction(...strs) {\n return strs.join(' ');\n}\nexport const defaultFormatter = {\n bold: formatFunction,\n dim: formatFunction,\n italic: formatFunction,\n underline: formatFunction,\n inverse: formatFunction,\n strikethrough: formatFunction,\n black: formatFunction,\n red: formatFunction,\n green: formatFunction,\n yellow: formatFunction,\n blue: formatFunction,\n magenta: formatFunction,\n cyan: formatFunction,\n white: formatFunction,\n gray: formatFunction,\n grey: formatFunction,\n stripColor: formatFunction,\n};\n","const messages = {\n upToDate: 'Already up-to-date.',\n folderInSync: 'Folder in sync.',\n nothingToInstall: 'Nothing to install.',\n resolvingPackages: 'Resolving packages',\n checkingManifest: 'Validating package.json',\n fetchingPackages: 'Fetching packages',\n linkingDependencies: 'Linking dependencies',\n rebuildingPackages: 'Rebuilding all packages',\n buildingFreshPackages: 'Building fresh packages',\n cleaningModules: 'Cleaning modules',\n bumpingVersion: 'Bumping version',\n savingHar: 'Saving HAR file: $0',\n answer: 'Answer?',\n usage: 'Usage',\n installCommandRenamed: '`install` has been replaced with `add` to add new dependencies. Run $0 instead.',\n globalFlagRemoved: '`--global` has been deprecated. Please run $0 instead.',\n waitingInstance: 'Waiting for the other pika instance to finish (pid $0, inside $1)',\n waitingNamedInstance: 'Waiting for the other pika instance to finish ($0)',\n offlineRetrying: 'There appears to be trouble with your network connection. Retrying...',\n internalServerErrorRetrying: 'There appears to be trouble with the npm registry (returned $1). Retrying...',\n clearedCache: 'Cleared cache.',\n couldntClearPackageFromCache: \"Couldn't clear package $0 from cache\",\n clearedPackageFromCache: 'Cleared package $0 from cache',\n packWroteTarball: 'Wrote tarball to $0.',\n helpExamples: ' Examples:\\n$0\\n',\n helpCommands: ' Commands:\\n$0\\n',\n helpCommandsMore: ' Run `$0` for more information on specific commands.',\n helpLearnMore: ' Visit $0 to learn more about Pika.\\n',\n manifestPotentialTypo: 'Potential typo $0, did you mean $1?',\n manifestBuiltinModule: '$0 is also the name of a node core module',\n manifestNameDot: \"Name can't start with a dot\",\n manifestNameIllegalChars: 'Name contains illegal characters',\n manifestNameBlacklisted: 'Name is blacklisted',\n manifestLicenseInvalid: 'License should be a valid SPDX license expression',\n manifestLicenseNone: 'No license field',\n manifestStringExpected: '$0 is not a string',\n manifestDependencyCollision: '$0 has dependency $1 with range $2 that collides with a dependency in $3 of the same name with version $4',\n manifestDirectoryNotFound: 'Unable to read $0 directory of module $1',\n verboseFileCopy: 'Copying $0 to $1.',\n verboseFileLink: 'Creating hardlink at $0 to $1.',\n verboseFileSymlink: 'Creating symlink at $0 to $1.',\n verboseFileSkip: 'Skipping copying of file $0 as the file at $1 is the same size ($2) and mtime ($3).',\n verboseFileSkipSymlink: 'Skipping copying of $0 as the file at $1 is the same symlink ($2).',\n verboseFileSkipHardlink: 'Skipping copying of $0 as the file at $1 is the same hardlink ($2).',\n verboseFileRemoveExtraneous: 'Removing extraneous file $0.',\n verboseFilePhantomExtraneous: \"File $0 would be marked as extraneous but has been removed as it's listed as a phantom file.\",\n verboseFileSkipArtifact: 'Skipping copying of $0 as the file is marked as a built artifact and subject to change.',\n verboseFileFolder: 'Creating directory $0.',\n verboseRequestStart: 'Performing $0 request to $1.',\n verboseRequestFinish: 'Request $0 finished with status code $1.',\n configSet: 'Set $0 to $1.',\n configDelete: 'Deleted $0.',\n configNpm: 'npm config',\n configPika: 'pika config',\n couldntFindPackagejson: \"Couldn't find a package.json file in $0\",\n couldntFindMatch: \"Couldn't find match for $0 in $1 for $2.\",\n couldntFindPackageInCache: \"Couldn't find any versions for $0 that matches $1 in our cache (possible versions are $2). This is usually caused by a missing entry in the lockfile, running Pika without the --offline flag may help fix this issue.\",\n couldntFindVersionThatMatchesRange: \"Couldn't find any versions for $0 that matches $1\",\n chooseVersionFromList: 'Please choose a version of $0 from this list:',\n moduleNotInManifest: \"This module isn't specified in a package.json file.\",\n moduleAlreadyInManifest: '$0 is already in $1. Please remove existing entry first before adding it to $2.',\n unknownFolderOrTarball: \"Passed folder/tarball doesn't exist,\",\n unknownPackage: \"Couldn't find package $0.\",\n unknownPackageName: \"Couldn't find package name.\",\n unknownUser: \"Couldn't find user $0.\",\n unknownRegistryResolver: 'Unknown registry resolver $0',\n userNotAnOwner: \"User $0 isn't an owner of this package.\",\n invalidVersionArgument: 'Use the $0 flag to create a new version.',\n invalidVersion: 'Invalid version supplied.',\n requiredVersionInRange: 'Required version in range.',\n packageNotFoundRegistry: \"Couldn't find package $0 on the $1 registry.\",\n requiredPackageNotFoundRegistry: \"Couldn't find package $0 required by $1 on the $2 registry.\",\n doesntExist: \"Package $1 refers to a non-existing file '$0'.\",\n missingRequiredPackageKey: `Package $0 doesn't have a $1.`,\n invalidAccess: 'Invalid argument for access, expected public or restricted.',\n invalidCommand: 'Invalid subcommand. Try $0',\n invalidGistFragment: 'Invalid gist fragment $0.',\n invalidHostedGitFragment: 'Invalid hosted git fragment $0.',\n invalidFragment: 'Invalid fragment $0.',\n invalidPackageName: 'Invalid package name.',\n invalidPackageVersion: \"Can't add $0: invalid package version $1.\",\n couldntFindManifestIn: \"Couldn't find manifest in $0.\",\n shrinkwrapWarning: 'npm-shrinkwrap.json found. This will not be updated or respected. See https://yarnpkg.com/en/docs/migrating-from-npm for more information.',\n npmLockfileWarning: 'package-lock.json found. Your project contains lock files generated by tools other than Pika. It is advised not to mix package managers in order to avoid resolution inconsistencies caused by unsynchronized lock files. To clear this warning, remove package-lock.json.',\n lockfileOutdated: 'Outdated lockfile. Please run `pika install` and try again.',\n lockfileMerged: 'Merge conflict detected in pika.lock and successfully merged.',\n lockfileConflict: 'A merge conflict was found in pika.lock but it could not be successfully merged, regenerating pika.lock from scratch.',\n ignoredScripts: 'Ignored scripts due to flag.',\n missingAddDependencies: 'Missing list of packages to add to your project.',\n yesWarning: 'The yes flag has been set. This will automatically answer yes to all questions, which may have security implications.',\n networkWarning: \"You don't appear to have an internet connection. Try the --offline flag to use the cache for registry queries.\",\n flatGlobalError: 'The package $0 requires a flat dependency graph. Add `\"flat\": true` to your package.json and try again.',\n noName: `Package doesn't have a name.`,\n noVersion: `Package doesn't have a version.`,\n answerRequired: 'An answer is required.',\n missingWhyDependency: 'Missing package name, folder or path to file to identify why a package has been installed',\n bugReport: 'If you think this is a bug, please open a bug report with the information provided in $0.',\n unexpectedError: 'An unexpected error occurred: $0.',\n jsonError: 'Error parsing JSON at $0, $1.',\n noPermission: 'Cannot create $0 due to insufficient permissions.',\n noGlobalFolder: 'Cannot find a suitable global folder. Tried these: $0',\n allDependenciesUpToDate: 'All of your dependencies are up to date.',\n legendColorsForVersionUpdates: 'Color legend : \\n $0 : Major Update backward-incompatible updates \\n $1 : Minor Update backward-compatible features \\n $2 : Patch Update backward-compatible bug fixes',\n frozenLockfileError: 'Your lockfile needs to be updated, but pika was run with `--frozen-lockfile`.',\n fileWriteError: 'Could not write file $0: $1',\n fileDeleteError: 'Could not delete file $0: $1',\n multiplePackagesCantUnpackInSameDestination: 'Pattern $0 is trying to unpack in the same destination $1 as pattern $2. This could result in non-deterministic behavior, skipping.',\n incorrectLockfileEntry: 'Lockfile has incorrect entry for $0. Ignoring it.',\n invalidResolutionName: 'Resolution field $0 does not end with a valid package name and will be ignored',\n invalidResolutionVersion: 'Resolution field $0 has an invalid version entry and may be ignored',\n incompatibleResolutionVersion: 'Resolution field $0 is incompatible with requested version $1',\n pikaOutdated: \"Your current version of Pika is out of date. The latest version is $0, while you're on $1.\",\n pikaOutdatedInstaller: 'To upgrade, download the latest installer at $0.',\n pikaOutdatedCommand: 'To upgrade, run the following command:',\n tooManyArguments: 'Too many arguments, maximum of $0.',\n tooFewArguments: 'Not enough arguments, expected at least $0.',\n noArguments: \"This command doesn't require any arguments.\",\n ownerRemoving: 'Removing owner $0 from package $1.',\n ownerRemoved: 'Owner removed.',\n ownerRemoveError: \"Couldn't remove owner.\",\n ownerGetting: 'Getting owners for package $0',\n ownerGettingFailed: \"Couldn't get list of owners.\",\n ownerAlready: 'This user is already an owner of this package.',\n ownerAdded: 'Added owner.',\n ownerAdding: 'Adding owner $0 to package $1',\n ownerAddingFailed: \"Couldn't add owner.\",\n ownerNone: 'No owners.',\n teamCreating: 'Creating team',\n teamRemoving: 'Removing team',\n teamAddingUser: 'Adding user to team',\n teamRemovingUser: 'Removing user from team',\n teamListing: 'Listing teams',\n distFailed: `⚠️ Distribution \"$0\" failed to build: $1 $2`,\n distExiting: ` Exiting...`,\n distContinuing: ` Continuing...`,\n cleaning: 'Cleaning modules',\n cleanCreatingFile: 'Creating $0',\n cleanCreatedFile: 'Created $0. Please review the contents of this file then run \"pika autoclean --force\" to perform a clean.',\n cleanAlreadyExists: '$0 already exists. To revert to the default file, delete $0 then rerun this command.',\n cleanRequiresForce: 'This command required the \"--force\" flag to perform the clean. This is a destructive operation. Files specified in $0 will be deleted.',\n cleanDoesNotExist: '$0 does not exist. Autoclean will delete files specified by $0. Run \"autoclean --init\" to create $0 with the default entries.',\n binLinkCollision: \"There's already a linked binary called $0 in your global Pika bin. Could not link this package's $0 bin entry.\",\n linkCollision: \"There's already a package called $0 registered. This command has had no effect. If this command was run in another folder with the same name, the other folder is still linked. Please run pika unlink in the other folder if you want to register this folder.\",\n linkMissing: 'No registered package found called $0.',\n linkRegistered: 'Registered $0.',\n linkRegisteredMessage: 'You can now run `pika link $0` in the projects where you want to use this package and it will be used instead.',\n linkUnregistered: 'Unregistered $0.',\n linkUnregisteredMessage: 'You can now run `pika unlink $0` in the projects where you no longer want to use this package.',\n linkUsing: 'Using linked package for $0.',\n linkDisusing: 'Removed linked package $0.',\n linkDisusingMessage: 'You will need to run `pika` to re-install the package that was linked.',\n linkTargetMissing: 'The target of linked package $0 is missing. Removing link.',\n createInvalidBin: 'Invalid bin entry found in package $0.',\n createMissingPackage: 'Package not found - this is probably an internal error, and should be reported at https://github.com/yarnpkg/yarn/issues.',\n workspacesAddRootCheck: 'Running this command will add the dependency to the workspace root rather than the workspace itself, which might not be what you want - if you really meant it, make it explicit by running this command again with the -W flag (or --ignore-workspace-root-check).',\n workspacesRemoveRootCheck: 'Running this command will remove the dependency from the workspace root rather than the workspace itself, which might not be what you want - if you really meant it, make it explicit by running this command again with the -W flag (or --ignore-workspace-root-check).',\n workspacesFocusRootCheck: 'This command can only be run inside an individual workspace.',\n workspacesRequirePrivateProjects: 'Workspaces can only be enabled in private projects.',\n workspacesSettingMustBeArray: 'The workspaces field in package.json must be an array.',\n workspacesDisabled: 'Your project root defines workspaces but the feature is disabled in your Pika config. Please check \"workspaces-experimental\" in your .pikarc file.',\n workspacesNohoistRequirePrivatePackages: 'nohoist config is ignored in $0 because it is not a private package. If you think nohoist should be allowed in public packages, please submit an issue for your use case.',\n workspacesNohoistDisabled: `$0 defines nohoist but the feature is disabled in your Pika config (\"workspaces-nohoist-experimental\" in .pikarc file)`,\n workspaceRootNotFound: \"Cannot find the root of your workspace - are you sure you're currently in a workspace?\",\n workspaceMissingWorkspace: 'Missing workspace name.',\n workspaceMissingCommand: 'Missing command name.',\n workspaceUnknownWorkspace: 'Unknown workspace $0.',\n workspaceVersionMandatory: 'Missing version in workspace at $0, ignoring.',\n workspaceNameMandatory: 'Missing name in workspace at $0, ignoring.',\n workspaceNameDuplicate: 'There are more than one workspace with name $0',\n cacheFolderSkipped: 'Skipping preferred cache folder $0 because it is not writable.',\n cacheFolderMissing: \"Pika hasn't been able to find a cache folder it can use. Please use the explicit --cache-folder option to tell it what location to use, or make one of the preferred locations writable.\",\n cacheFolderSelected: 'Selected the next writable cache folder in the list, will be $0.',\n execMissingCommand: 'Missing command name.',\n noScriptsAvailable: 'There are no scripts specified inside package.json.',\n noBinAvailable: 'There are no binary scripts available.',\n dashDashDeprecation: `From Pika 1.0 onwards, scripts don't require \"--\" for options to be forwarded. In a future version, any explicit \"--\" will be forwarded as-is to the scripts.`,\n commandNotSpecified: 'No command specified.',\n binCommands: 'Commands available from binary scripts: ',\n possibleCommands: 'Project commands',\n commandQuestion: 'Which command would you like to run?',\n commandFailedWithCode: 'Command failed with exit code $0.',\n commandFailedWithSignal: 'Command failed with signal $0.',\n packageRequiresNodeGyp: 'This package requires node-gyp, which is not currently installed. Pika will attempt to automatically install it. If this fails, you can run \"pika global add node-gyp\" to manually install it.',\n nodeGypAutoInstallFailed: 'Failed to auto-install node-gyp. Please run \"pika global add node-gyp\" manually. Error: $0',\n foundIncompatible: 'Found incompatible module',\n incompatibleEngine: 'The engine $0 is incompatible with this module. Expected version $1. Got $2',\n incompatibleCPU: 'The CPU architecture $0 is incompatible with this module.',\n incompatibleOS: 'The platform $0 is incompatible with this module.',\n invalidEngine: 'The engine $0 appears to be invalid.',\n optionalCompatibilityExcluded: '$0 is an optional dependency and failed compatibility check. Excluding it from installation.',\n optionalModuleFail: 'This module is OPTIONAL, you can safely ignore this error',\n optionalModuleScriptFail: 'Error running install script for optional dependency: $0',\n optionalModuleCleanupFail: 'Could not cleanup build artifacts from failed install: $0',\n unmetPeer: '$0 has unmet peer dependency $1.',\n incorrectPeer: '$0 has incorrect peer dependency $1.',\n selectedPeer: 'Selecting $1 at level $2 as the peer dependency of $0.',\n missingBundledDependency: '$0 is missing a bundled dependency $1. This should be reported to the package maintainer.',\n savedNewDependency: 'Saved 1 new dependency.',\n savedNewDependencies: 'Saved $0 new dependencies.',\n directDependencies: 'Direct dependencies',\n allDependencies: 'All dependencies',\n foundWarnings: 'Found $0 warnings.',\n foundErrors: 'Found $0 errors.',\n savedLockfile: 'Saved lockfile.',\n noRequiredLockfile: 'No lockfile in this directory. Run `pika install` to generate one.',\n noLockfileFound: 'No lockfile found.',\n invalidSemver: 'Invalid semver version',\n newVersion: 'New version',\n currentVersion: 'Current version',\n noVersionOnPublish: 'Proceeding with current version',\n manualVersionResolution: 'Unable to find a suitable version for $0, please choose one by typing one of the numbers below:',\n manualVersionResolutionOption: '$0 which resolved to $1',\n createdTag: 'Created tag.',\n createdTagFail: \"Couldn't add tag.\",\n deletedTag: 'Deleted tag.',\n deletedTagFail: \"Couldn't delete tag.\",\n gettingTags: 'Getting tags',\n deletingTags: 'Deleting tag',\n creatingTag: 'Creating tag $0 = $1',\n whyStart: 'Why do we have the module $0?',\n whyFinding: 'Finding dependency',\n whyCalculating: 'Calculating file sizes',\n whyUnknownMatch: \"We couldn't find a match!\",\n whyInitGraph: 'Initialising dependency graph',\n whyWhoKnows: \"We don't know why this module exists\",\n whyDiskSizeWithout: 'Disk size without dependencies: $0',\n whyDiskSizeUnique: 'Disk size with unique dependencies: $0',\n whyDiskSizeTransitive: 'Disk size with transitive dependencies: $0',\n whySharedDependencies: 'Number of shared dependencies: $0',\n whyHoistedTo: `Has been hoisted to $0`,\n whyHoistedFromSimple: `This module exists because it's hoisted from $0.`,\n whyNotHoistedSimple: `This module exists here because it's in the nohoist list $0.`,\n whyDependedOnSimple: `This module exists because $0 depends on it.`,\n whySpecifiedSimple: `This module exists because it's specified in $0.`,\n whyReasons: 'Reasons this module exists',\n whyHoistedFrom: 'Hoisted from $0',\n whyNotHoisted: `in the nohoist list $0`,\n whyDependedOn: '$0 depends on it',\n whySpecified: `Specified in $0`,\n whyMatch: `\\r=> Found $0`,\n uninstalledPackages: 'Uninstalled packages.',\n uninstallRegenerate: 'Regenerating lockfile and installing missing dependencies',\n cleanRemovedFiles: 'Removed $0 files',\n cleanSavedSize: 'Saved $0 MB.',\n configFileFound: 'Found configuration file $0.',\n configPossibleFile: 'Checking for configuration file $0.',\n npmUsername: 'npm username',\n npmPassword: 'npm password',\n npmEmail: 'npm email',\n npmOneTimePassword: 'npm one-time password',\n loggingIn: 'Logging in',\n loggedIn: 'Logged in.',\n notRevokingEnvToken: 'Not revoking login token, specified via environment variable.',\n notRevokingConfigToken: 'Not revoking login token, specified via config file.',\n noTokenToRevoke: 'No login token to revoke.',\n revokingToken: 'Revoking token',\n revokedToken: 'Revoked login token.',\n loginAsPublic: 'Logging in as public',\n incorrectCredentials: 'Incorrect username or password.',\n incorrectOneTimePassword: 'Incorrect one-time password.',\n twoFactorAuthenticationEnabled: 'Two factor authentication enabled.',\n clearedCredentials: 'Cleared login credentials.',\n publishFail: \"Couldn't publish package: $0\",\n publishPrivate: 'Package marked as private, not publishing.',\n published: 'Published.',\n publishing: 'Publishing',\n nonInteractiveNoVersionSpecified: 'You must specify a new version with --new-version when running with --non-interactive.',\n nonInteractiveNoToken: \"No token found and can't prompt for login when running with --non-interactive.\",\n infoFail: 'Received invalid response from npm.',\n malformedRegistryResponse: 'Received malformed response from registry for $0. The registry may be down.',\n registryNoVersions: 'No valid versions found for $0. The package may be unpublished.',\n cantRequestOffline: \"Can't make a request in offline mode ($0)\",\n requestManagerNotSetupHAR: 'RequestManager was not setup to capture HAR files',\n requestError: 'Request $0 returned a $1',\n requestFailed: 'Request failed $0',\n tarballNotInNetworkOrCache: '$0: Tarball is not in network and can not be located in cache ($1)',\n fetchBadHashWithPath: \"Integrity check failed for $0 (computed integrity doesn't match our records, got $2)\",\n fetchBadIntegrityAlgorithm: 'Integrity checked failed for $0 (none of the specified algorithms are supported)',\n fetchErrorCorrupt: '$0. Mirror tarball appears to be corrupt. You can resolve this by running:\\n\\n rm -rf $1\\n pika install',\n errorExtractingTarball: 'Extracting tar content of $1 failed, the file appears to be corrupt: $0',\n updateInstalling: 'Installing $0...',\n hostedGitResolveError: 'Error connecting to repository. Please, check the url.',\n unknownFetcherFor: 'Unknown fetcher for $0',\n downloadGitWithoutCommit: 'Downloading the git repo $0 over plain git without a commit hash',\n downloadHTTPWithoutCommit: 'Downloading the git repo $0 over HTTP without a commit hash',\n unplugDisabled: \"Packages can only be unplugged when Plug'n'Play is enabled.\",\n plugnplayWindowsSupport: \"Plug'n'Play on Windows doesn't support the cache and project to be kept on separate drives\",\n packageInstalledWithBinaries: 'Installed $0 with binaries:',\n packageHasBinaries: '$0 has binaries:',\n packageHasNoBinaries: '$0 has no binaries',\n packageBinaryNotFound: \"Couldn't find a binary named $0\",\n couldBeDeduped: '$0 could be deduped from $1 to $2',\n lockfileNotContainPattern: 'Lockfile does not contain pattern: $0',\n integrityCheckFailed: 'Integrity check failed',\n noIntegrityFile: \"Couldn't find an integrity file\",\n integrityFailedExpectedIsNotAJSON: 'Integrity check: integrity file is not a json',\n integrityCheckLinkedModulesDontMatch: \"Integrity check: Linked modules don't match\",\n integrityFlagsDontMatch: \"Integrity check: Flags don't match\",\n integrityLockfilesDontMatch: \"Integrity check: Lock files don't match\",\n integrityFailedFilesMissing: 'Integrity check: Files are missing',\n integrityPatternsDontMatch: \"Integrity check: Top level patterns don't match\",\n integrityModulesFoldersMissing: 'Integrity check: Some module folders are missing',\n integritySystemParamsDontMatch: \"Integrity check: System parameters don't match\",\n packageNotInstalled: '$0 not installed',\n optionalDepNotInstalled: 'Optional dependency $0 not installed',\n packageWrongVersion: '$0 is wrong version: expected $1, got $2',\n packageDontSatisfy: \"$0 doesn't satisfy found match of $1\",\n lockfileExists: 'Lockfile already exists, not migrating.',\n pikaManifestExists: 'pika.package.json manifest already exists, not migrating.',\n noManifestExists: 'No package.json manifest found. Run `pika init` to generate a new pika.package.json manifest.',\n skippingImport: 'Skipping import of $0 for $1',\n importFailed: 'Import of $0 for $1 failed, resolving normally.',\n importResolveFailed: 'Import of $0 failed starting in $1',\n importResolvedRangeMatch: 'Using version $0 of $1 instead of $2 for $3',\n importSourceFilesCorrupted: 'Failed to import from package-lock.json, source file(s) corrupted',\n importPackageLock: 'found npm package-lock.json, converting to pika.lock',\n importYarnLock: 'found yarn.lock, converting to pika.lock',\n importNodeModules: 'creating pika.lock from local node_modules folder',\n packageContainsPikaAsGlobal: 'Installing Pika via Pika will result in you having two separate versions of Pika installed at the same time, which is not recommended. To update Pika please follow https://yarnpkg.com/en/docs/install .',\n watchStarting: `Starting up`,\n watchRunning: `Ready! Watching source tree for changes`,\n watchRebuild: `Rebuilding...`,\n watchError: `Build error!`,\n noValidationErrors: `0 Validation Errors found.`,\n validationErrors: `$0 Validation Error(s) found. Resolve before publishing.`,\n scopeNotValid: 'The specified scope is not valid.',\n deprecatedCommand: '$0 is deprecated. Please use $1.',\n deprecatedListArgs: 'Filtering by arguments is deprecated. Please use the pattern option instead.',\n implicitFileDeprecated: 'Using the \"file:\" protocol implicitly is deprecated. Please either prepend the protocol or prepend the path $0 with \"./\".',\n unsupportedNodeVersion: 'You are using Node $0 which is not supported and may encounter bugs or unexpected behavior. Pika supports the following semver range: $1',\n verboseUpgradeBecauseRequested: 'Considering upgrade of $0 to $1 because it was directly requested.',\n verboseUpgradeBecauseOutdated: 'Considering upgrade of $0 to $1 because a newer version exists in the registry.',\n verboseUpgradeNotUnlocking: 'Not unlocking $0 in the lockfile because it is a new or direct dependency.',\n verboseUpgradeUnlocking: 'Unlocking $0 in the lockfile.',\n folderMissing: \"Directory $0 doesn't exist\",\n mutexPortBusy: 'Cannot use the network mutex on port $0. It is probably used by another app.',\n auditRunning: 'Auditing packages',\n auditSummary: '$0 vulnerabilities found - Packages audited: $1',\n auditSummarySeverity: 'Severity:',\n auditCritical: '$0 Critical',\n auditHigh: '$0 High',\n auditModerate: '$0 Moderate',\n auditLow: '$0 Low',\n auditInfo: '$0 Info',\n auditResolveCommand: '# Run $0 to resolve $1 $2',\n auditSemverMajorChange: 'SEMVER WARNING: Recommended action is a potentially breaking change',\n auditManualReview: 'Manual Review\\nSome vulnerabilities require your attention to resolve\\n\\nVisit https://go.npm.me/audit-guide for additional guidance',\n auditRunAuditForDetails: 'Security audit found potential problems. Run \"pika audit\" for additional details.',\n auditOffline: 'Skipping audit. Security audit cannot be performed in offline mode.',\n};\nexport default messages;\n","import { defaultFormatter } from './format.js';\nimport * as languages from './lang/index.js';\nimport * as isCI from 'is-ci';\nimport * as os from 'os';\nimport * as util from 'util';\nimport { EventEmitter } from 'events';\nexport function stringifyLangArgs(args) {\n return args.map(function (val) {\n if (val != null && val.inspect) {\n return val.inspect();\n }\n else {\n try {\n const str = JSON.stringify(val) || val + '';\n // should match all literal line breaks and\n // \"u001b\" that follow an odd number of backslashes and convert them to ESC\n // we do this because the JSON.stringify process has escaped these characters\n return str\n .replace(/((?:^|[^\\\\])(?:\\\\{2})*)\\\\u001[bB]/g, '$1\\u001b')\n .replace(/[\\\\]r[\\\\]n|([\\\\])?[\\\\]n/g, (match, precededBacklash) => {\n // precededBacklash not null when \"\\n\" is preceded by a backlash (\"\\\\n\")\n // match will be \"\\\\n\" and we don't replace it with os.EOL\n return precededBacklash ? match : os.EOL;\n });\n }\n catch (e) {\n return util.inspect(val);\n }\n }\n });\n}\nexport default class BaseReporter {\n constructor(opts = {}) {\n const lang = 'en';\n this.language = lang;\n this.stdout = opts.stdout || process.stdout;\n this.stderr = opts.stderr || process.stderr;\n this.stdin = opts.stdin || this._getStandardInput();\n this.emoji = !!opts.emoji;\n this.nonInteractive = !!opts.nonInteractive;\n this.noProgress = !!opts.noProgress || isCI;\n this.isVerbose = !!opts.verbose;\n // @ts-ignore\n this.isTTY = this.stdout.isTTY;\n this.peakMemory = 0;\n this.startTime = Date.now();\n this.format = defaultFormatter;\n }\n lang(key, ...args) {\n const msg = languages[this.language][key] || languages.en[key];\n if (!msg) {\n throw new ReferenceError(`No message defined for language key ${key}`);\n }\n // stringify args\n const stringifiedArgs = stringifyLangArgs(args);\n // replace $0 placeholders with args\n return msg.replace(/\\$(\\d+)/g, (str, i) => {\n return stringifiedArgs[i];\n });\n }\n /**\n * `stringifyLangArgs` run `JSON.stringify` on strings too causing\n * them to appear quoted. This marks them as \"raw\" and prevents\n * the quoting and escaping\n */\n rawText(str) {\n return {\n inspect() {\n return str;\n },\n };\n }\n verbose(msg) {\n if (this.isVerbose) {\n this._verbose(msg);\n }\n }\n verboseInspect(val) {\n if (this.isVerbose) {\n this._verboseInspect(val);\n }\n }\n _verbose(msg) { }\n _verboseInspect(val) { }\n _getStandardInput() {\n let standardInput;\n // Accessing stdin in a win32 headless process (e.g., Visual Studio) may throw an exception.\n try {\n standardInput = process.stdin;\n }\n catch (e) {\n console.warn(e.message);\n delete process.stdin;\n // @ts-ignore\n process.stdin = new EventEmitter();\n standardInput = process.stdin;\n }\n return standardInput;\n }\n initPeakMemoryCounter() {\n this.checkPeakMemory();\n this.peakMemoryInterval = setInterval(() => {\n this.checkPeakMemory();\n }, 1000);\n // $FlowFixMe: Node's setInterval returns a Timeout, not a Number\n this.peakMemoryInterval.unref();\n }\n checkPeakMemory() {\n const { heapTotal } = process.memoryUsage();\n if (heapTotal > this.peakMemory) {\n this.peakMemory = heapTotal;\n }\n }\n close() {\n if (this.peakMemoryInterval) {\n clearInterval(this.peakMemoryInterval);\n this.peakMemoryInterval = null;\n }\n }\n getTotalTime() {\n return Date.now() - this.startTime;\n }\n // TODO\n list(key, items, hints) { }\n // Outputs basic tree structure to console\n tree(key, obj, { force = false } = {}) { }\n // called whenever we begin a step in the CLI.\n step(current, total, message, emoji) { }\n // a error message has been triggered. this however does not always meant an abrupt\n // program end.\n error(message) { }\n // an info message has been triggered. this provides things like stats and diagnostics.\n info(message) { }\n // a warning message has been triggered.\n warn(message) { }\n // a success message has been triggered.\n success(message) { }\n // a simple log message\n // TODO: rethink the {force} parameter. In the meantime, please don't use it (cf comments in #4143).\n log(message, { force = false } = {}) { }\n // a shell command has been executed\n command(command) { }\n // inspect and pretty-print any value\n inspect(value) { }\n // the screen shown at the very start of the CLI\n header(pkg) { }\n // the screen shown at the very end of the CLI\n footer(showPeakMemory) { }\n // a table structure\n table(head, body) { }\n // render an activity spinner and return a function that will trigger an update\n activity() {\n return {\n tick(name) { },\n end() { },\n };\n }\n //\n activitySet(total, workers) {\n return {\n spinners: Array(workers).fill({\n clear() { },\n setPrefix() { },\n tick() { },\n end() { },\n }),\n end() { },\n };\n }\n // render a progress bar and return a function which when called will trigger an update\n progress(total) {\n return function () { };\n }\n // utility function to disable progress bar\n disableProgress() {\n this.noProgress = true;\n }\n}\n","// public\nexport function sortTrees(trees) {\n return trees.sort(function (tree1, tree2) {\n return tree1.name.localeCompare(tree2.name);\n });\n}\nexport function recurseTree(tree, prefix, recurseFunc) {\n const treeLen = tree.length;\n const treeEnd = treeLen - 1;\n for (let i = 0; i < treeLen; i++) {\n const atEnd = i === treeEnd;\n recurseFunc(tree[i], prefix + getLastIndentChar(atEnd), prefix + getNextIndentChar(atEnd));\n }\n}\nexport function getFormattedOutput(fmt) {\n const item = formatColor(fmt.color, fmt.name, fmt.formatter);\n const suffix = getSuffix(fmt.hint, fmt.formatter);\n return `${fmt.prefix}─ ${item}${suffix}\\n`;\n}\nfunction getNextIndentChar(end) {\n return end ? ' ' : '│ ';\n}\nfunction getLastIndentChar(end) {\n return end ? '└' : '├';\n}\nfunction getSuffix(hint, formatter) {\n return hint ? ` (${formatter.grey(hint)})` : '';\n}\nfunction formatColor(color, strToFormat, formatter) {\n return color ? formatter[color](strToFormat) : strToFormat;\n}\n","import * as tty from 'tty';\nimport * as readline from 'readline';\nimport chalk from 'chalk';\nconst CLEAR_WHOLE_LINE = 0;\nconst CLEAR_RIGHT_OF_CURSOR = 1;\nexport function clearLine(stdout) {\n if (!chalk.supportsColor) {\n if (stdout instanceof tty.WriteStream) {\n if (stdout.columns > 0) {\n stdout.write(`\\r${' '.repeat(stdout.columns - 1)}`);\n }\n stdout.write(`\\r`);\n }\n return;\n }\n readline.clearLine(stdout, CLEAR_WHOLE_LINE);\n readline.cursorTo(stdout, 0);\n}\nexport function toStartOfLine(stdout) {\n if (!chalk.supportsColor) {\n stdout.write('\\r');\n return;\n }\n readline.cursorTo(stdout, 0);\n}\nexport function writeOnNthLine(stdout, n, msg) {\n if (!chalk.supportsColor) {\n return;\n }\n if (n == 0) {\n readline.cursorTo(stdout, 0);\n stdout.write(msg);\n readline.clearLine(stdout, CLEAR_RIGHT_OF_CURSOR);\n return;\n }\n readline.cursorTo(stdout, 0);\n readline.moveCursor(stdout, 0, -n);\n stdout.write(msg);\n readline.clearLine(stdout, CLEAR_RIGHT_OF_CURSOR);\n readline.cursorTo(stdout, 0);\n readline.moveCursor(stdout, 0, n);\n}\nexport function clearNthLine(stdout, n) {\n if (!chalk.supportsColor) {\n return;\n }\n if (n == 0) {\n clearLine(stdout);\n return;\n }\n readline.cursorTo(stdout, 0);\n readline.moveCursor(stdout, 0, -n);\n readline.clearLine(stdout, CLEAR_WHOLE_LINE);\n readline.moveCursor(stdout, 0, n);\n}\n","import { clearLine, toStartOfLine } from './util.js';\nexport default class ProgressBar {\n constructor(total, stdout = process.stderr, callback) {\n this.stdout = stdout;\n this.total = total;\n this.chars = ProgressBar.bars[0];\n this.delay = 60;\n this.curr = 0;\n this._callback = callback;\n clearLine(stdout);\n }\n tick() {\n if (this.curr >= this.total) {\n return;\n }\n this.curr++;\n // schedule render\n if (!this.id) {\n this.id = setTimeout(() => this.render(), this.delay);\n }\n }\n cancelTick() {\n if (this.id) {\n clearTimeout(this.id);\n this.id = null;\n }\n }\n stop() {\n // \"stop\" by setting current to end so `tick` becomes noop\n this.curr = this.total;\n this.cancelTick();\n clearLine(this.stdout);\n if (this._callback) {\n this._callback(this);\n }\n }\n render() {\n // clear throttle\n this.cancelTick();\n let ratio = this.curr / this.total;\n ratio = Math.min(Math.max(ratio, 0), 1);\n // progress without bar\n let bar = ` ${this.curr}/${this.total}`;\n // calculate size of actual bar\n // $FlowFixMe: investigate process.stderr.columns flow error\n // @ts-ignore\n const availableSpace = Math.max(0, this.stdout.columns - bar.length - 3);\n const width = Math.min(this.total, availableSpace);\n const completeLength = Math.round(width * ratio);\n const complete = this.chars[0].repeat(completeLength);\n const incomplete = this.chars[1].repeat(width - completeLength);\n bar = `[${complete}${incomplete}]${bar}`;\n toStartOfLine(this.stdout);\n this.stdout.write(bar);\n }\n}\nProgressBar.bars = [['#', '-']];\n","import { writeOnNthLine, clearNthLine } from './util.js';\nexport default class Spinner {\n constructor(stdout = process.stderr, lineNumber = 0) {\n this.current = 0;\n this.prefix = '';\n this.lineNumber = lineNumber;\n this.stdout = stdout;\n this.delay = 60;\n this.chars = Spinner.spinners[28].split('');\n this.text = '';\n this.id = null;\n }\n setPrefix(prefix) {\n this.prefix = prefix;\n }\n setText(text) {\n this.text = text;\n }\n start() {\n this.current = 0;\n this.render();\n }\n render() {\n if (this.id) {\n clearTimeout(this.id);\n }\n // build line ensuring we don't wrap to the next line\n let msg = `${this.prefix}${this.chars[this.current]} ${this.text}`;\n // @ts-ignore\n const columns = typeof this.stdout.columns === 'number' ? this.stdout.columns : 100;\n msg = msg.slice(0, columns);\n writeOnNthLine(this.stdout, this.lineNumber, msg);\n this.current = ++this.current % this.chars.length;\n this.id = setTimeout(() => this.render(), this.delay);\n }\n stop() {\n if (this.id) {\n clearTimeout(this.id);\n this.id = null;\n }\n clearNthLine(this.stdout, this.lineNumber);\n }\n}\nSpinner.spinners = [\n '|/-\\\\',\n '⠂-–—–-',\n '◐◓◑◒',\n '◴◷◶◵',\n '◰◳◲◱',\n '▖▘▝▗',\n '■□▪▫',\n '▌▀▐▄',\n '▉▊▋▌▍▎▏▎▍▌▋▊▉',\n '▁▃▄▅▆▇█▇▆▅▄▃',\n '←↖↑↗→↘↓↙',\n '┤┘┴└├┌┬┐',\n '◢◣◤◥',\n '.oO°Oo.',\n '.oO@*',\n '🌍🌎🌏',\n '◡◡ ⊙⊙ ◠◠',\n '☱☲☴',\n '⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏',\n '⠋⠙⠚⠞⠖⠦⠴⠲⠳⠓',\n '⠄⠆⠇⠋⠙⠸⠰⠠⠰⠸⠙⠋⠇⠆',\n '⠋⠙⠚⠒⠂⠂⠒⠲⠴⠦⠖⠒⠐⠐⠒⠓⠋',\n '⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠴⠲⠒⠂⠂⠒⠚⠙⠉⠁',\n '⠈⠉⠋⠓⠒⠐⠐⠒⠖⠦⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈',\n '⠁⠁⠉⠙⠚⠒⠂⠂⠒⠲⠴⠤⠄⠄⠤⠠⠠⠤⠦⠖⠒⠐⠐⠒⠓⠋⠉⠈⠈',\n '⢄⢂⢁⡁⡈⡐⡠',\n '⢹⢺⢼⣸⣇⡧⡗⡏',\n '⣾⣽⣻⢿⡿⣟⣯⣷',\n '⠁⠂⠄⡀⢀⠠⠐⠈',\n];\n","import chalk from 'chalk';\nimport * as readline from 'readline';\nimport stripAnsi from 'strip-ansi';\nimport { inspect } from 'util';\nimport { removeSuffix } from '../../util/misc.js';\nimport BaseReporter from '../base-reporter.js';\nimport { getFormattedOutput, recurseTree, sortTrees } from './helpers/tree-helper.js';\nimport Progress from './progress-bar.js';\nimport Spinner from './spinner-progress.js';\nimport { clearLine } from './util.js';\nconst AUDIT_COL_WIDTHS = [15, 62];\nconst auditSeverityColors = {\n info: chalk.bold,\n low: chalk.bold,\n moderate: chalk.yellow,\n high: chalk.red,\n critical: chalk.bgRed,\n};\n// fixes bold on windows\nif (process.platform === 'win32' && !(process.env.TERM && /^xterm/i.test(process.env.TERM))) {\n // @ts-ignore\n chalk.bold._styles[0].close += '\\u001b[m';\n}\nexport default class ConsoleReporter extends BaseReporter {\n constructor(opts) {\n super(opts);\n this._lastCategorySize = 0;\n this._spinners = new Set();\n this.format = chalk;\n this.format.stripColor = stripAnsi;\n this.isSilent = !!opts.isSilent;\n }\n _prependEmoji(msg, emoji) {\n if (this.emoji && emoji && this.isTTY) {\n msg = `${emoji} ${msg}`;\n }\n return msg;\n }\n _logCategory(category, color, msg) {\n this._lastCategorySize = category.length;\n this._log(`${this.format[color](category)} ${msg}`);\n }\n _verbose(msg) {\n this._logCategory('verbose', 'grey', `${process.uptime()} ${msg}`);\n }\n _verboseInspect(obj) {\n this.inspect(obj);\n }\n close() {\n for (const spinner of this._spinners) {\n spinner.stop();\n }\n this._spinners.clear();\n this.stopProgress();\n super.close();\n }\n table(head, body) {\n //\n head = head.map((field) => this.format.underline(field));\n //\n const rows = [head].concat(body);\n // get column widths\n const cols = [];\n for (let i = 0; i < head.length; i++) {\n const widths = rows.map((row) => this.format.stripColor(row[i]).length);\n cols[i] = Math.max(...widths);\n }\n //\n const builtRows = rows.map((row) => {\n for (let i = 0; i < row.length; i++) {\n const field = row[i];\n const padding = cols[i] - this.format.stripColor(field).length;\n row[i] = field + ' '.repeat(padding);\n }\n return row.join(' ');\n });\n this.log(builtRows.join('\\n'));\n }\n step(current, total, msg, emoji) {\n msg = this._prependEmoji(msg, emoji);\n if (msg.endsWith('?')) {\n msg = `${removeSuffix(msg, '?')}...?`;\n }\n else {\n msg += '...';\n }\n this.log(`${this.format.dim(`[${current}/${total}]`)} ${msg}`);\n }\n inspect(value) {\n if (typeof value !== 'number' && typeof value !== 'string') {\n value = inspect(value, {\n breakLength: 0,\n colors: this.isTTY,\n depth: null,\n maxArrayLength: null,\n });\n }\n this.log(String(value), { force: true });\n }\n list(key, items, hints) {\n const gutterWidth = (this._lastCategorySize || 2) - 1;\n if (hints) {\n for (const item of items) {\n this._log(`${' '.repeat(gutterWidth)}- ${this.format.bold(item)}`);\n this._log(` ${' '.repeat(gutterWidth)} ${hints[item]}`);\n }\n }\n else {\n for (const item of items) {\n this._log(`${' '.repeat(gutterWidth)}- ${item}`);\n }\n }\n }\n header(pkg) {\n this.log(this.format.bold(`${pkg.name} v${pkg.version}`));\n }\n footer(showPeakMemory) {\n this.stopProgress();\n const totalTime = (this.getTotalTime() / 1000).toFixed(2);\n let msg = `Done in ${totalTime}s.`;\n if (showPeakMemory) {\n const peakMemory = (this.peakMemory / 1024 / 1024).toFixed(2);\n msg += ` Peak memory usage ${peakMemory}MB.`;\n }\n this.log(this._prependEmoji(msg, '✨'));\n }\n log(msg, { force = false } = {}) {\n this._lastCategorySize = 0;\n this._log(msg, { force });\n }\n _log(msg, { force = false } = {}) {\n if (this.isSilent && !force) {\n return;\n }\n clearLine(this.stdout);\n this.stdout.write(`${msg}\\n`);\n }\n success(msg) {\n this._logCategory('success', 'green', msg);\n }\n error(msg) {\n clearLine(this.stderr);\n this.stderr.write(`${this.format.red('error')} ${msg}\\n`);\n }\n info(msg) {\n this._logCategory('info', 'blue', msg);\n }\n command(command) {\n this.log(this.format.dim(`$ ${command}`));\n }\n warn(msg) {\n clearLine(this.stderr);\n this.stderr.write(`${this.format.yellow('warning')} ${msg}\\n`);\n }\n // handles basic tree output to console\n tree(key, trees, { force = false } = {}) {\n this.stopProgress();\n //\n if (this.isSilent && !force) {\n return;\n }\n const output = ({ name, children, hint, color }, titlePrefix, childrenPrefix) => {\n const formatter = this.format;\n const out = getFormattedOutput({\n prefix: titlePrefix,\n hint,\n color,\n name,\n formatter,\n });\n this.stdout.write(out);\n if (children && children.length) {\n recurseTree(sortTrees(children), childrenPrefix, output);\n }\n };\n recurseTree(sortTrees(trees), '', output);\n }\n activitySet(total, workers) {\n if (!this.isTTY || this.noProgress) {\n return super.activitySet(total, workers);\n }\n const spinners = [];\n const reporterSpinners = this._spinners;\n for (let i = 1; i < workers; i++) {\n this.log('');\n }\n for (let i = 0; i < workers; i++) {\n const spinner = new Spinner(this.stderr, i);\n reporterSpinners.add(spinner);\n spinner.start();\n let prefix = null;\n let current = 0;\n const updatePrefix = () => {\n spinner.setPrefix(`${this.format.dim(`[${current === 0 ? '-' : current}/${total}]`)} `);\n };\n const clear = () => {\n prefix = null;\n current = 0;\n updatePrefix();\n spinner.setText('waiting...');\n };\n clear();\n spinners.unshift({\n clear,\n setPrefix(_current, _prefix) {\n current = _current;\n prefix = _prefix;\n spinner.s