/third_party/typescript/tests/baselines/reference/ |
D | moduleExportAssignment.symbols | 2 var npmlog = require('./npmlog') 3 >npmlog : Symbol(npmlog, Decl(use.js, 0, 3)) 5 >'./npmlog' : Symbol("tests/cases/conformance/salsa/npmlog", Decl(npmlog.js, 0, 0)) 7 npmlog.x 8 >npmlog.x : Symbol(npmlog.x, Decl(npmlog.js, 7, 23)) 9 >npmlog : Symbol(npmlog, Decl(use.js, 0, 3)) 10 >x : Symbol(npmlog.x, Decl(npmlog.js, 7, 23)) 12 npmlog.on 13 >npmlog.on : Symbol(EE.on, Decl(npmlog.js, 0, 10)) 14 >npmlog : Symbol(npmlog, Decl(use.js, 0, 3)) [all …]
|
D | moduleExportAssignment.types | 2 var npmlog = require('./npmlog') 3 >npmlog : { on(s: string): void; x: number; y: 2; } 4 >require('./npmlog') : { on(s: string): void; x: number; y: 2; } 6 >'./npmlog' : "./npmlog" 8 npmlog.x 9 >npmlog.x : number 10 >npmlog : { on(s: string): void; x: number; y: 2; } 13 npmlog.on 14 >npmlog.on : (s: string) => void 15 >npmlog : { on(s: string): void; x: number; y: 2; } [all …]
|
/third_party/typescript/tests/baselines/reference/user/ |
D | npmlog.log | 3 node_modules/npmlog/log.js(82,8): error TS2339: Property 'tracker' does not exist on type 'enablePr… 4 node_modules/npmlog/log.js(82,34): error TS2339: Property 'showProgress' does not exist on type 'en… 5 node_modules/npmlog/log.js(83,12): error TS2339: Property '_pause' does not exist on type 'enablePr… 6 node_modules/npmlog/log.js(84,8): error TS2339: Property 'gauge' does not exist on type 'enableProg… 7 node_modules/npmlog/log.js(90,8): error TS2339: Property 'tracker' does not exist on type 'disableP… 8 node_modules/npmlog/log.js(90,46): error TS2339: Property 'showProgress' does not exist on type 'di… 9 node_modules/npmlog/log.js(91,8): error TS2339: Property 'gauge' does not exist on type 'disablePro… 10 node_modules/npmlog/log.js(150,12): error TS2339: Property 'progressEnabled' does not exist on type… 11 node_modules/npmlog/log.js(150,34): error TS2339: Property 'gauge' does not exist on type 'pause'. 12 node_modules/npmlog/log.js(159,3): error TS2532: Object is possibly 'undefined'. [all …]
|
/third_party/typescript/tests/cases/conformance/salsa/ |
D | moduleExportAssignment.ts | 9 var npmlog = module.exports = new EE() variable 11 npmlog.on('hi') // both references should see EE.on 14 npmlog.x = 1 16 npmlog.y 20 var npmlog = require('./npmlog') variable 21 npmlog.x 22 npmlog.on
|
/third_party/node/deps/npm/lib/utils/ |
D | display.js | 2 const npmlog = require('npmlog') constant 91 this.#npmlog('verbose', `attempt to log ${inspect(args)} crashed`, ex) 100 return this.#eresolveWarn(...args) || this.#npmlog(...args) 105 #npmlog (level, ...args) { method in Display 106 npmlog[level](...args) 118 this.#npmlog(level, heading, message) 119 this.#npmlog(level, '', explain(expl, this.#chalk, 2))
|
/third_party/node/deps/npm/test/lib/utils/ |
D | log-shim.js | 66 const npmlog = { level: 'woo', enableColor: () => true } variable 67 const shim = makeShim({ npmlog, 'proc-log': procLog }) property 71 npmlog.level = 'hey' 73 [shim.level, npmlog.level], 80 [shim.level, npmlog.level],
|
D | display.js | 44 npmlog: { property 70 npmlog: { property
|
D | pulse-till-done.js | 7 npmlog: { property
|
D | read-user-info.js | 31 npmlog: { property
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
D | tracker.js | 4 const npmlog = require('npmlog') constant 33 npmlog.enableProgress() 36 this[_progress].set(section, npmlog.newGroup(section)) 82 npmlog.disableProgress() 98 npmlog.disableProgress()
|
/third_party/node/deps/npm/node_modules/libnpmexec/lib/ |
D | run-script.js | 4 const npmlog = require('npmlog') constant 34 npmlog.disableProgress() 67 npmlog.enableProgress()
|
D | index.js | 9 const npmlog = require('npmlog') constant 267 npmlog.clearProgress()
|
/third_party/node/deps/npm/test/fixtures/ |
D | mock-logs.js | 77 npmlog: Object.assign(NPMLOG, merge( property 124 otherMocks.npmlog
|
/third_party/node/deps/npm/test/lib/ |
D | npm.js | 528 npmlog: { property
|
/third_party/node/deps/npm/node_modules/node-gyp/ |
D | CHANGELOG.md | 157 * npmlog@6.0.0 ([8083f6b](https://www.github.com/nodejs/node-gyp/commit/8083f6b855bd7f3326af04c5f52… 717 * [[`3df8222fa5`](https://github.com/nodejs/node-gyp/commit/3df8222fa5)] - Allow for npmlog@3.x (Re… 736 * [[`6e28ad1bea`](https://github.com/nodejs/node-gyp/commit/6e28ad1bea)] - Allow for npmlog@2.x (Re…
|