Skip to content

Commit 160b20c

Browse files
committed
deps: @npmcli/query@4.0.1
1 parent acae504 commit 160b20c

36 files changed

+48
-17
lines changed

node_modules/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
!/@npmcli/package-json
2828
!/@npmcli/promise-spawn
2929
!/@npmcli/query
30+
!/@npmcli/query/node_modules/
31+
/@npmcli/query/node_modules/*
32+
!/@npmcli/query/node_modules/postcss-selector-parser
3033
!/@npmcli/redact
3134
!/@npmcli/run-script
3235
!/@pkgjs/
@@ -170,7 +173,6 @@
170173
!/parse-conflict-json
171174
!/path-key
172175
!/path-scurry
173-
!/postcss-selector-parser
174176
!/proc-log
175177
!/proggy
176178
!/promise-all-reject-late

node_modules/postcss-selector-parser/API.md renamed to node_modules/@npmcli/query/node_modules/postcss-selector-parser/API.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ if (next && next.type !== 'combinator') {
254254
}
255255
```
256256

257-
### `node.replaceWith(node)`
257+
### `node.replaceWith(node[,...nodeN])`
258258

259259
Replace a node with another.
260260

@@ -267,6 +267,8 @@ attr.replaceWith(className);
267267
Arguments:
268268

269269
* `node`: The node to substitute the original with.
270+
...
271+
* `nodeN`: The node to substitute the original with.
270272

271273
### `node.remove()`
272274

@@ -531,7 +533,7 @@ Arguments:
531533

532534
* `node`: The node to add.
533535

534-
### `container.insertBefore(old, new)` & `container.insertAfter(old, new)`
536+
### `container.insertBefore(old, new[, ...newNodes])` & `container.insertAfter(old, new[, ...newNodes])`
535537

536538
Add a node before or after an existing node in a container:
537539

0 commit comments

Comments
 (0)