Searched refs:newVersion (Results 1 – 13 of 13) sorted by relevance
/third_party/node/deps/npm/lib/ |
D | version.js | 49 var newVersion = semver.valid(args[0]) 50 if (!newVersion) newVersion = semver.inc(data.version, args[0], npm.config.get('preid')) 51 if (!newVersion) return cb_(version.usage) 52 persistVersion(newVersion, silent, data, cb_) 91 function persistVersion (newVersion, silent, data, localData, cb_) { argument 97 if (!npm.config.get('allow-same-version') && data.version === newVersion) { 100 data.version = newVersion 102 lifecycleData._id = data.name + '@' + newVersion 108 [updatePackage, newVersion, silent], 110 [commit, localData, newVersion], [all …]
|
/third_party/node/deps/npm/node_modules/libnpmpublish/ |
D | publish.js | 161 const newVersion = Object.keys(newData.versions)[0] 163 if (curVers.indexOf(newVersion) !== -1) { 168 current.versions[newVersion] = newData.versions[newVersion] 191 newData.versions[newVersion].maintainers = maint
|
/third_party/node/deps/npm/test/tap/ |
D | version-prerelease-id.js | 19 var newVersion = require(path.resolve(pkg, 'package.json')).version 20 t.equal(newVersion, '0.0.1-rc.0', 'got expected version')
|
/third_party/typescript/src/server/ |
D | scriptVersionCache.ts | 330 getTextChangesBetweenVersions(oldVersion: number, newVersion: number) { 331 if (oldVersion < newVersion) { 334 for (let i = oldVersion + 1; i <= newVersion; i++) {
|
/third_party/typescript/src/typingsInstallerCore/ |
D | typingsInstaller.ts | 373 …const newVersion = new Version(distTags[`ts${versionMajorMinor}`] || distTags[this.latestDistTag]); constant 374 … const newTyping: JsTyping.CachedTyping = { typingLocation: typingFile, version: newVersion };
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 244 newVersion?: number | null; property 2174 readonly newVersion: number | null; property
|
D | lib.dom.d.ts | 590 newVersion?: number | null; property 9599 readonly newVersion: number | null; property
|
D | tsserverlibrary.js | 162083 … ScriptVersionCache.prototype.getTextChangesBetweenVersions = function (oldVersion, newVersion) { argument 162084 if (oldVersion < newVersion) { 162087 for (var i = oldVersion + 1; i <= newVersion; i++) {
|
D | tsserver.js | 161889 … ScriptVersionCache.prototype.getTextChangesBetweenVersions = function (oldVersion, newVersion) { argument 161890 if (oldVersion < newVersion) { 161893 for (var i = oldVersion + 1; i <= newVersion; i++) {
|
D | typingsInstaller.js | 115576 …var newVersion = new ts.Version(distTags["ts" + ts.versionMajorMinor] || distTags[_this.latestDist… 115577 var newTyping = { typingLocation: typingFile, version: newVersion };
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 224 newVersion?: number | null; property 2154 readonly newVersion: number | null; property
|
D | dom.generated.d.ts | 570 newVersion?: number | null; property 9579 readonly newVersion: number | null; property
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 11134 newVersion: number; property
|