Home
last modified time | relevance | path

Searched full:outdated (Results 1 – 25 of 248) sorted by relevance

12345678910

/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Doutdated.js.test.cjs8 exports[`test/lib/commands/outdated.js TAP aliases > should display aliased outdated dep output 1`]…
13 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --all > must match…
21 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --json --long > mu…
56 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --json > must matc…
87 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --long > must matc…
95 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --omit=dev --omit=…
102 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --omit=dev > must …
110 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --omit=prod > must…
117 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --parseable --long…
124 exports[`test/lib/commands/outdated.js TAP should display outdated deps outdated --parseable > must…
[all …]
/third_party/node/deps/npm/test/lib/commands/
Doutdated.js237 command: 'outdated',
262 t.test('should display outdated deps', async t => {
263 await t.test('outdated global', async t => {
264 const { outdated, joinedOutput } = await mockNpm(t, {
268 await outdated.exec([])
273 await t.test('outdated', async t => {
274 const { outdated, joinedOutput } = await mockNpm(t, {
280 await outdated.exec([])
285 await t.test('outdated --omit=dev', async t => {
286 const { outdated, joinedOutput } = await mockNpm(t, {
[all …]
/third_party/rust/crates/libc/.github/workflows/
Dbors.yml13 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
26 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
37 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
49 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
60 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
84 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
100 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
106 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
117 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
166 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
[all …]
/third_party/node/deps/npm/man/man1/
Dnpm-outdated.11 .TH "NPM-OUTDATED" "1" "February 2024" "" ""
3 \fBnpm-outdated\fR - Check for outdated packages
8 npm outdated \[lB]<package-spec> ...\[rB]
13 …and will check the registry to see if any (or, specific) installed packages are currently outdated.
15 …your configured \fIworkspaces\fR are shown. Use \fB--all\fR to find all outdated meta-dependencies…
20 …on\fR. If there's no available semver range (i.e. you're running \fBnpm outdated --global\fR, or t…
41 $ npm outdated
69 …t's something immutable, like a commit SHA), or it might not, so \fBnpm outdated\fR and \fBnpm upd…
86 When running \fBnpm outdated\fR and \fBnpm ls\fR, setting \fB--all\fR will show all outdated or ins…
Dnpm-ls.158 When running \fBnpm outdated\fR and \fBnpm ls\fR, setting \fB--all\fR will show all outdated or ins…
280 npm help outdated
Dnpm-diff.167 …nt, \fBnpm diff\fR will work in a similar way to \fB\fBnpm-outdated\fR\fR \fI\(lanpm-outdated\(ra\…
300 npm help outdated
/third_party/node/deps/npm/docs/content/commands/
Dnpm-outdated.md2 title: npm-outdated
4 description: Check for outdated packages
10 npm outdated [<package-spec> ...]
16 packages are currently outdated.
20 Use `--all` to find all outdated meta-dependencies as well.
26 (i.e. you're running `npm outdated --global`, or the package isn't
51 $ npm outdated
77 not, so `npm outdated` and `npm update` have to fetch Git repos to check.
94 When running `npm outdated` and `npm ls`, setting `--all` will show all
95 outdated or installed packages, rather than only those directly depended
Dnpm-ls.md81 When running `npm outdated` and `npm ls`, setting `--all` will show all
82 outdated or installed packages, rather than only those directly depended
293 * [npm outdated](/commands/npm-outdated)
Dnpm-diff.md80 [`npm-outdated`](npm-outdated) and reach for the registry to figure out
313 * [npm outdated](/commands/npm-outdated)
Dnpm-explain.md104 * [npm outdated](/commands/npm-outdated)
/third_party/node/deps/npm/man/man7/
Ddependency-selectors.715 …r query commands in \fBnpm\fR (ex. \fBnpm fund\fR, \fBnpm ls\fR, \fBnpm outdated\fR, \fBnpm audit\…
104 \fB:outdated(<type>)\fR when a dependency is outdated
134 .SS "\fB:outdated(<type>)\fR"
136 The \fB:outdated\fR pseudo selector retrieves data from the registry and returns information about …
158outdated.inRange\fR an array of objects, each with a \fBfrom\fR and \fBversions\fR, where \fBfrom\…
160outdated.outOfRange\fR an array of objects, identical in shape to \fBinRange\fR, but where the \fB…
167 \fB:root > :outdated(major)\fR returns every direct dependency that has a new semver major release
169 \fB.prod:outdated(in-range)\fR returns production dependencies that have a new release that satisfi…
/third_party/node/deps/npm/lib/commands/
Doutdated.js12 class Outdated extends ArboristWorkspaceCmd { class
13 static description = 'Check for outdated packages'
14 static name = 'outdated'
74 const outdated = this.list.sort((a, b) => localeCompare(a.name, b.name))
76 if (outdated.length > 0) {
80 // return if no outdated packages
81 if (outdated.length === 0 && !this.npm.config.get('json')) {
87 this.npm.output(this.makeJSON(outdated))
89 this.npm.output(this.makeParseable(outdated))
91 const outList = outdated.map(x => this.makePretty(x))
[all …]
/third_party/node/deps/npm/docs/content/using-npm/
Ddependency-selectors.md14 …ogic of similar query commands in `npm` (ex. `npm fund`, `npm ls`, `npm outdated`, `npm audit` ...)
64 - `:outdated(<type>)` when a dependency is outdated
83 ##### `:outdated(<type>)`
85 The `:outdated` pseudo selector retrieves data from the registry and returns information about whic…
97outdated.inRange` an array of objects, each with a `from` and `versions`, where `from` is the on-d…
98outdated.outOfRange` an array of objects, identical in shape to `inRange`, but where the `versions…
102 - `:root > :outdated(major)` returns every direct dependency that has a new semver major release
103 - `.prod:outdated(in-range)` returns production dependencies that have a new release that satisfies…
/third_party/rust/crates/link-cplusplus/.github/workflows/
Dci.yml41 outdated:
42 name: Outdated
48 - uses: dtolnay/install@cargo-outdated
49 - run: cargo outdated --workspace --exit-code 1
/third_party/node/deps/npm/docs/output/commands/
Dnpm-outdated.html3 <title>npm-outdated</title>
139 <h1 id="npm-outdated">npm-outdated</h1>
140 <span class="description">Check for outdated packages</span>
149 <pre><code class="language-bash">npm outdated [&lt;package-spec&gt; ...]
153 packages are currently outdated.</p>
156 Use <code>--all</code> to find all outdated meta-dependencies as well.</p>
161 (i.e. you're running <code>npm outdated --global</code>, or the package isn't
184 <pre><code class="language-bash">$ npm outdated
207 not, so <code>npm outdated</code> and <code>npm update</code> have to fetch Git repos to check.
223 <p>When running <code>npm outdated</code> and <code>npm ls</code>, setting <code>--all</code> will …
[all …]
/third_party/rust/crates/quote/.github/workflows/
Dci.yml95 outdated:
96 name: Outdated
102 - uses: dtolnay/install@cargo-outdated
103 - run: cargo outdated --workspace --exit-code 1
/third_party/node/deps/npm/tap-snapshots/test/lib/
Dnpm.js.test.cjs28 install-test, link, ll, login, logout, ls, org, outdated,
74 outdated, owner, pack,
126 outdated, owner, pack,
169 install-test, link, ll, login, logout, ls, org, outdated,
215 outdated, owner, pack,
267 outdated, owner, pack,
318 outdated, owner, pack,
361 install-test, link, ll, login, logout, ls, org, outdated,
398 install-test, link, ll, login, logout, ls, org, outdated,
435 install-test, link, ll, login, logout, ls, org, outdated,
/third_party/rust/crates/unicode-ident/.github/workflows/
Dci.yml81 outdated:
82 name: Outdated
88 - uses: dtolnay/install@cargo-outdated
89 - run: cargo outdated --workspace --exit-code 1
/third_party/rust/crates/proc-macro2/.github/workflows/
Dci.yml171 outdated:
172 name: Outdated
178 - uses: dtolnay/install@cargo-outdated
179 - run: cargo outdated --workspace --exit-code 1
180 - run: cargo outdated --manifest-path fuzz/Cargo.toml --exit-code 1
/third_party/rust/crates/syn/.github/workflows/
Dci.yml174 outdated:
175 name: Outdated
181 - uses: dtolnay/install@cargo-outdated
182 - run: cargo outdated --workspace --exit-code 1
183 - run: cargo outdated --manifest-path fuzz/Cargo.toml --exit-code 1
/third_party/rust/crates/cxx/.github/workflows/
Dci.yml147 outdated:
148 name: Outdated
154 - uses: dtolnay/install@cargo-outdated
155 - run: cargo outdated --workspace --exit-code 1
/third_party/rust/crates/serde/.github/workflows/
Dci.yml164 outdated:
165 name: Outdated
171 - uses: dtolnay/install@cargo-outdated
172 - run: cargo outdated --workspace --exit-code 1
/third_party/node/deps/npm/docs/output/using-npm/
Ddependency-selectors.html154 …e>npm</code> (ex. <code>npm fund</code>, <code>npm ls</code>, <code>npm outdated</code>, <code>npm…
204 <li><code>:outdated(&lt;type&gt;)</code> when a dependency is outdated</li>
221 <h5 id="outdatedtype"><code>:outdated(&lt;type&gt;)</code></h5>
222 …e <code>:outdated</code> pseudo selector retrieves data from the registry and returns information …
234outdated.inRange</code> an array of objects, each with a <code>from</code> and <code>versions</cod…
235outdated.outOfRange</code> an array of objects, identical in shape to <code>inRange</code>, but wh…
239 <li><code>:root &gt; :outdated(major)</code> returns every direct dependency that has a new semver …
240 <li><code>.prod:outdated(in-range)</code> returns production dependencies that have a new release t…
/third_party/python/Doc/tools/templates/
Dlayout.html4 {%- if outdated %}
5 <div id="outdated-warning" style="padding: .5em; text-align: center; background-color: #FFBABA; col…
/third_party/libdrm/include/drm/
DREADME62 differ significantly - see Outdated or Broken Headers section below.
84 Outdated or Broken Headers

12345678910