@vltpkg/query 1.0.0-rc.24 → 1.0.0-rc.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/pseudo.js +5 -0
  2. package/package.json +10 -9
package/dist/pseudo.js CHANGED
@@ -84,6 +84,8 @@ const has = async (state) => {
84
84
  edges: new Set(state.partial.edges),
85
85
  nodes: new Set(state.partial.nodes),
86
86
  },
87
+ diffFiles: state.diffFiles,
88
+ loose: state.loose,
87
89
  hostContexts: state.hostContexts,
88
90
  importers: state.importers,
89
91
  retries: state.retries,
@@ -158,6 +160,7 @@ const is = async (state) => {
158
160
  nodes: new Set(),
159
161
  },
160
162
  current: node,
163
+ diffFiles: state.diffFiles,
161
164
  initial: state.initial,
162
165
  loose: true,
163
166
  partial: {
@@ -203,7 +206,9 @@ const not = async (state) => {
203
206
  nodes: new Set(),
204
207
  },
205
208
  current: node,
209
+ diffFiles: state.diffFiles,
206
210
  initial: state.initial,
211
+ loose: state.loose,
207
212
  partial: {
208
213
  nodes: new Set(state.partial.nodes),
209
214
  edges: new Set(state.partial.edges),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vltpkg/query",
3
3
  "description": "Query syntax parser that retrieves items from a graph",
4
- "version": "1.0.0-rc.24",
4
+ "version": "1.0.0-rc.26",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/vltpkg/vltpkg.git",
@@ -9,15 +9,16 @@
9
9
  },
10
10
  "author": {
11
11
  "name": "vlt technology inc.",
12
- "email": "support@vlt.sh"
12
+ "email": "support@vlt.sh",
13
+ "url": "http://vlt.sh"
13
14
  },
14
15
  "dependencies": {
15
- "@vltpkg/dep-id": "1.0.0-rc.24",
16
- "@vltpkg/dss-parser": "1.0.0-rc.24",
17
- "@vltpkg/error-cause": "1.0.0-rc.24",
18
- "@vltpkg/security-archive": "1.0.0-rc.24",
19
- "@vltpkg/semver": "1.0.0-rc.24",
20
- "@vltpkg/types": "1.0.0-rc.24",
16
+ "@vltpkg/dep-id": "1.0.0-rc.26",
17
+ "@vltpkg/dss-parser": "1.0.0-rc.26",
18
+ "@vltpkg/error-cause": "1.0.0-rc.26",
19
+ "@vltpkg/security-archive": "1.0.0-rc.26",
20
+ "@vltpkg/semver": "1.0.0-rc.26",
21
+ "@vltpkg/types": "1.0.0-rc.26",
21
22
  "minimatch": "^10.1.1",
22
23
  "p-retry": "^7.1.1",
23
24
  "postcss-selector-parser": "^7.1.1"
@@ -25,7 +26,7 @@
25
26
  "devDependencies": {
26
27
  "@eslint/js": "^9.39.1",
27
28
  "@types/node": "^22.19.2",
28
- "@vltpkg/spec": "1.0.0-rc.24",
29
+ "@vltpkg/spec": "1.0.0-rc.26",
29
30
  "eslint": "^9.39.1",
30
31
  "prettier": "^3.7.4",
31
32
  "tap": "^21.5.0",