@parcel/graph 3.5.3-canary.3472 → 3.5.3-canary.3476
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.
- package/package.json +3 -3
- package/test/Graph.test.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@parcel/graph",
|
3
|
-
"version": "3.5.3-canary.
|
3
|
+
"version": "3.5.3-canary.3476+d948759d2",
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
5
5
|
"license": "MIT",
|
6
6
|
"publishConfig": {
|
@@ -20,8 +20,8 @@
|
|
20
20
|
"node": ">= 16.0.0"
|
21
21
|
},
|
22
22
|
"dependencies": {
|
23
|
-
"@parcel/feature-flags": "2.15.3-canary.
|
23
|
+
"@parcel/feature-flags": "2.15.3-canary.3476+d948759d2",
|
24
24
|
"nullthrows": "^1.1.1"
|
25
25
|
},
|
26
|
-
"gitHead": "
|
26
|
+
"gitHead": "d948759d2fd502bc0c76cf87480f6fb12d2a2ee6"
|
27
27
|
}
|
package/test/Graph.test.js
CHANGED
@@ -499,7 +499,7 @@ describe('Graph', () => {
|
|
499
499
|
});
|
500
500
|
|
501
501
|
assert.deepEqual(contexts, [
|
502
|
-
[0,
|
502
|
+
[0, null],
|
503
503
|
[1, 'node-0-created-context'],
|
504
504
|
[2, 'node-1-created-context'],
|
505
505
|
[3, 'node-2-created-context'],
|
@@ -543,7 +543,7 @@ describe('Graph', () => {
|
|
543
543
|
});
|
544
544
|
|
545
545
|
assert.deepEqual(contexts, [
|
546
|
-
[0,
|
546
|
+
[0, null],
|
547
547
|
[1, 'node-0-created-context'],
|
548
548
|
[2, 'node-1-created-context'],
|
549
549
|
['exit', 2, 'node-2-created-context'],
|