A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/npm/cli/commit/ac98fd3a8514f2552555d2b8af74a52e64888797 below:

npm-package-arg@11.0.2 · npm/cli@ac98fd3 · GitHub

File tree Expand file treeCollapse file tree 15 files changed

+161

-34

lines changed

Filter options

Expand file treeCollapse file tree 15 files changed

+161

-34

lines changed Original file line number Diff line number Diff line change

@@ -50,7 +50,7 @@

50 50

"@npmcli/template-oss": "4.21.3",

51 51

"json-stringify-safe": "^5.0.1",

52 52

"nock": "^13.3.3",

53 -

"npm-package-arg": "^11.0.1",

53 +

"npm-package-arg": "^11.0.2",

54 54

"pacote": "^17.0.4",

55 55

"tap": "^16.3.8"

56 56

}

Original file line number Diff line number Diff line change

@@ -171,6 +171,9 @@

171 171

!/npm-install-checks

172 172

!/npm-normalize-package-bin

173 173

!/npm-package-arg

174 +

!/npm-package-arg/node_modules/

175 +

/npm-package-arg/node_modules/*

176 +

!/npm-package-arg/node_modules/proc-log

174 177

!/npm-packlist

175 178

!/npm-pick-manifest

176 179

!/npm-profile

Original file line number Diff line number Diff line change

@@ -10,7 +10,7 @@ const semver = require('semver')

10 10

const path = global.FAKE_WINDOWS ? require('path').win32 : require('path')

11 11

const validatePackageName = require('validate-npm-package-name')

12 12

const { homedir } = require('os')

13 -

const log = require('proc-log')

13 +

const { log } = require('proc-log')

14 14 15 15

const isWindows = process.platform === 'win32' || global.FAKE_WINDOWS

16 16

const hasSlashes = isWindows ? /\\|[/]/ : /[/]/

Original file line number Diff line number Diff line change

@@ -0,0 +1,15 @@

1 +

The ISC License

2 + 3 +

Copyright (c) GitHub, Inc.

4 + 5 +

Permission to use, copy, modify, and/or distribute this software for any

6 +

purpose with or without fee is hereby granted, provided that the above

7 +

copyright notice and this permission notice appear in all copies.

8 + 9 +

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES

10 +

WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF

11 +

MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR

12 +

ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES

13 +

WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN

14 +

ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR

15 +

IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Original file line number Diff line number Diff line change

@@ -0,0 +1,62 @@

1 +

module.exports = {

2 +

output: {

3 +

LEVELS: [

4 +

'standard',

5 +

'error',

6 +

'buffer',

7 +

],

8 +

standard: function (...args) {

9 +

return process.emit('output', 'standard', ...args)

10 +

},

11 +

error: function (...args) {

12 +

return process.emit('output', 'error', ...args)

13 +

},

14 +

buffer: function (...args) {

15 +

return process.emit('output', 'buffer', ...args)

16 +

},

17 +

},

18 +

log: {

19 +

LEVELS: [

20 +

'notice',

21 +

'error',

22 +

'warn',

23 +

'info',

24 +

'verbose',

25 +

'http',

26 +

'silly',

27 +

'timing',

28 +

'pause',

29 +

'resume',

30 +

],

31 +

error: function (...args) {

32 +

return process.emit('log', 'error', ...args)

33 +

},

34 +

notice: function (...args) {

35 +

return process.emit('log', 'notice', ...args)

36 +

},

37 +

warn: function (...args) {

38 +

return process.emit('log', 'warn', ...args)

39 +

},

40 +

info: function (...args) {

41 +

return process.emit('log', 'info', ...args)

42 +

},

43 +

verbose: function (...args) {

44 +

return process.emit('log', 'verbose', ...args)

45 +

},

46 +

http: function (...args) {

47 +

return process.emit('log', 'http', ...args)

48 +

},

49 +

silly: function (...args) {

50 +

return process.emit('log', 'silly', ...args)

51 +

},

52 +

timing: function (...args) {

53 +

return process.emit('log', 'timing', ...args)

54 +

},

55 +

pause: function (...args) {

56 +

return process.emit('log', 'pause', ...args)

57 +

},

58 +

resume: function (...args) {

59 +

return process.emit('log', 'resume', ...args)

60 +

},

61 +

},

62 +

}

Original file line number Diff line number Diff line change

@@ -0,0 +1,45 @@

1 +

{

2 +

"name": "proc-log",

3 +

"version": "4.0.0",

4 +

"files": [

5 +

"bin/",

6 +

"lib/"

7 +

],

8 +

"main": "lib/index.js",

9 +

"description": "just emit 'log' events on the process object",

10 +

"repository": {

11 +

"type": "git",

12 +

"url": "https://github.com/npm/proc-log.git"

13 +

},

14 +

"author": "GitHub Inc.",

15 +

"license": "ISC",

16 +

"scripts": {

17 +

"test": "tap",

18 +

"snap": "tap",

19 +

"posttest": "npm run lint",

20 +

"postsnap": "eslint index.js test/*.js --fix",

21 +

"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",

22 +

"postlint": "template-oss-check",

23 +

"lintfix": "npm run lint -- --fix",

24 +

"template-oss-apply": "template-oss-apply --force"

25 +

},

26 +

"devDependencies": {

27 +

"@npmcli/eslint-config": "^4.0.0",

28 +

"@npmcli/template-oss": "4.21.3",

29 +

"tap": "^16.0.1"

30 +

},

31 +

"engines": {

32 +

"node": "^14.17.0 || ^16.13.0 || >=18.0.0"

33 +

},

34 +

"templateOSS": {

35 +

"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",

36 +

"version": "4.21.3",

37 +

"publish": true

38 +

},

39 +

"tap": {

40 +

"nyc-arg": [

41 +

"--exclude",

42 +

"tap-snapshots/**"

43 +

]

44 +

}

45 +

}

Original file line number Diff line number Diff line change

@@ -1,6 +1,6 @@

1 1

{

2 2

"name": "npm-package-arg",

3 -

"version": "11.0.1",

3 +

"version": "11.0.2",

4 4

"description": "Parse the things that can be arguments to `npm install`",

5 5

"main": "./lib/npa.js",

6 6

"directories": {

@@ -12,20 +12,20 @@

12 12

],

13 13

"dependencies": {

14 14

"hosted-git-info": "^7.0.0",

15 -

"proc-log": "^3.0.0",

15 +

"proc-log": "^4.0.0",

16 16

"semver": "^7.3.5",

17 17

"validate-npm-package-name": "^5.0.0"

18 18

},

19 19

"devDependencies": {

20 20

"@npmcli/eslint-config": "^4.0.0",

21 -

"@npmcli/template-oss": "4.18.0",

21 +

"@npmcli/template-oss": "4.21.3",

22 22

"tap": "^16.0.1"

23 23

},

24 24

"scripts": {

25 25

"test": "tap",

26 26

"snap": "tap",

27 27

"npmclilint": "npmcli-lint",

28 -

"lint": "eslint \"**/*.js\"",

28 +

"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",

29 29

"lintfix": "npm run lint -- --fix",

30 30

"posttest": "npm run lint",

31 31

"postsnap": "npm run lintfix --",

@@ -54,14 +54,7 @@

54 54

},

55 55

"templateOSS": {

56 56

"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",

57 -

"version": "4.18.0",

58 -

"publish": true,

59 -

"ciVersions": [

60 -

"16.14.0",

61 -

"16.x",

62 -

"18.0.0",

63 -

"18.x"

64 -

],

65 -

"npmSpec": "next-9"

57 +

"version": "4.21.3",

58 +

"publish": true

66 59

}

67 60

}

Original file line number Diff line number Diff line change

@@ -137,7 +137,7 @@

137 137

"normalize-package-data": "^6.0.0",

138 138

"npm-audit-report": "^5.0.0",

139 139

"npm-install-checks": "^6.3.0",

140 -

"npm-package-arg": "^11.0.1",

140 +

"npm-package-arg": "^11.0.2",

141 141

"npm-pick-manifest": "^9.0.0",

142 142

"npm-profile": "^9.0.0",

143 143

"npm-registry-fetch": "^16.2.0",

@@ -238,7 +238,7 @@

238 238

"@npmcli/template-oss": "4.21.3",

239 239

"json-stringify-safe": "^5.0.1",

240 240

"nock": "^13.3.3",

241 -

"npm-package-arg": "^11.0.1",

241 +

"npm-package-arg": "^11.0.2",

242 242

"pacote": "^17.0.4",

243 243

"tap": "^16.3.8"

244 244

},

@@ -10077,20 +10077,29 @@

10077 10077

}

10078 10078

},

10079 10079

"node_modules/npm-package-arg": {

10080 -

"version": "11.0.1",

10081 -

"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz",

10082 -

"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",

10080 +

"version": "11.0.2",

10081 +

"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz",

10082 +

"integrity": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==",

10083 10083

"inBundle": true,

10084 10084

"dependencies": {

10085 10085

"hosted-git-info": "^7.0.0",

10086 -

"proc-log": "^3.0.0",

10086 +

"proc-log": "^4.0.0",

10087 10087

"semver": "^7.3.5",

10088 10088

"validate-npm-package-name": "^5.0.0"

10089 10089

},

10090 10090

"engines": {

10091 10091

"node": "^16.14.0 || >=18.0.0"

10092 10092

}

10093 10093

},

10094 +

"node_modules/npm-package-arg/node_modules/proc-log": {

10095 +

"version": "4.0.0",

10096 +

"resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.0.0.tgz",

10097 +

"integrity": "sha512-v1lzmYxGDs2+OZnmYtYZK3DG8zogt+CbQ+o/iqqtTfpyCmGWulCTEQu5GIbivf7OjgIkH2Nr8SH8UxAGugZNbg==",

10098 +

"inBundle": true,

10099 +

"engines": {

10100 +

"node": "^14.17.0 || ^16.13.0 || >=18.0.0"

10101 +

}

10102 +

},

10094 10103

"node_modules/npm-packlist": {

10095 10104

"version": "8.0.2",

10096 10105

"resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz",

@@ -16167,7 +16176,7 @@

16167 16176

"minimatch": "^9.0.4",

16168 16177

"nopt": "^7.0.0",

16169 16178

"npm-install-checks": "^6.2.0",

16170 -

"npm-package-arg": "^11.0.1",

16179 +

"npm-package-arg": "^11.0.2",

16171 16180

"npm-pick-manifest": "^9.0.0",

16172 16181

"npm-registry-fetch": "^16.2.0",

16173 16182

"pacote": "^17.0.4",

@@ -16227,7 +16236,7 @@

16227 16236

"version": "8.0.3",

16228 16237

"license": "ISC",

16229 16238

"dependencies": {

16230 -

"npm-package-arg": "^11.0.1",

16239 +

"npm-package-arg": "^11.0.2",

16231 16240

"npm-registry-fetch": "^16.2.0"

16232 16241

},

16233 16242

"devDependencies": {

@@ -16251,7 +16260,7 @@

16251 16260

"binary-extensions": "^2.3.0",

16252 16261

"diff": "^5.1.0",

16253 16262

"minimatch": "^9.0.4",

16254 -

"npm-package-arg": "^11.0.1",

16263 +

"npm-package-arg": "^11.0.2",

16255 16264

"pacote": "^17.0.4",

16256 16265

"tar": "^6.2.1"

16257 16266

},

@@ -16271,7 +16280,7 @@

16271 16280

"@npmcli/arborist": "^7.2.1",

16272 16281

"@npmcli/run-script": "^7.0.2",

16273 16282

"ci-info": "^4.0.0",

16274 -

"npm-package-arg": "^11.0.1",

16283 +

"npm-package-arg": "^11.0.2",

16275 16284

"pacote": "^17.0.4",

16276 16285

"proc-log": "^3.0.0",

16277 16286

"read": "^3.0.1",

@@ -16349,7 +16358,7 @@

16349 16358

"dependencies": {

16350 16359

"@npmcli/arborist": "^7.2.1",

16351 16360

"@npmcli/run-script": "^7.0.2",

16352 -

"npm-package-arg": "^11.0.1",

16361 +

"npm-package-arg": "^11.0.2",

16353 16362

"pacote": "^17.0.4"

16354 16363

},

16355 16364

"devDependencies": {

@@ -16369,7 +16378,7 @@

16369 16378

"dependencies": {

16370 16379

"ci-info": "^4.0.0",

16371 16380

"normalize-package-data": "^6.0.0",

16372 -

"npm-package-arg": "^11.0.1",

16381 +

"npm-package-arg": "^11.0.2",

16373 16382

"npm-registry-fetch": "^16.2.0",

16374 16383

"proc-log": "^3.0.0",

16375 16384

"semver": "^7.3.7",

Original file line number Diff line number Diff line change

@@ -99,7 +99,7 @@

99 99

"normalize-package-data": "^6.0.0",

100 100

"npm-audit-report": "^5.0.0",

101 101

"npm-install-checks": "^6.3.0",

102 -

"npm-package-arg": "^11.0.1",

102 +

"npm-package-arg": "^11.0.2",

103 103

"npm-pick-manifest": "^9.0.0",

104 104

"npm-profile": "^9.0.0",

105 105

"npm-registry-fetch": "^16.2.0",

Original file line number Diff line number Diff line change

@@ -23,7 +23,7 @@

23 23

"minimatch": "^9.0.4",

24 24

"nopt": "^7.0.0",

25 25

"npm-install-checks": "^6.2.0",

26 -

"npm-package-arg": "^11.0.1",

26 +

"npm-package-arg": "^11.0.2",

27 27

"npm-pick-manifest": "^9.0.0",

28 28

"npm-registry-fetch": "^16.2.0",

29 29

"pacote": "^17.0.4",

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4