@atlaspack/graph 3.5.9 → 3.5.10-typescript-08dcc1c9b.0
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/LICENSE +201 -0
- package/lib/AdjacencyList.js +26 -3
- package/lib/BitSet.js +0 -1
- package/lib/ContentGraph.js +1 -5
- package/lib/Graph.js +8 -3
- package/lib/shared-buffer.js +1 -1
- package/lib/types.js +1 -0
- package/package.json +9 -6
- package/src/{AdjacencyList.js → AdjacencyList.ts} +127 -101
- package/src/{BitSet.js → BitSet.ts} +0 -3
- package/src/{ContentGraph.js → ContentGraph.ts} +21 -20
- package/src/{Graph.js → Graph.ts} +88 -65
- package/src/{index.js → index.ts} +0 -2
- package/src/{shared-buffer.js → shared-buffer.ts} +6 -4
- package/src/{types.js → types.ts} +5 -7
- package/test/{AdjacencyList.test.js → AdjacencyList.test.ts} +21 -29
- package/test/{BitSet.test.js → BitSet.test.ts} +3 -5
- package/test/{ContentGraph.test.js → ContentGraph.test.ts} +2 -4
- package/test/{Graph.test.js → Graph.test.ts} +22 -24
- package/tsconfig.json +4 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright (c) 2024 Atlassian US., Inc.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/lib/AdjacencyList.js
CHANGED
|
@@ -23,9 +23,13 @@ var _types = require("./types");
|
|
|
23
23
|
var _Graph = require("./Graph");
|
|
24
24
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
25
25
|
/** The address of the node in the nodes map. */
|
|
26
|
+
|
|
26
27
|
/** The address of the edge in the edges map. */
|
|
28
|
+
|
|
27
29
|
// eslint-disable-next-line no-unused-vars
|
|
30
|
+
|
|
28
31
|
// eslint-disable-next-line no-unused-vars
|
|
32
|
+
|
|
29
33
|
const DEFAULT_PARAMS = {
|
|
30
34
|
initialCapacity: 2,
|
|
31
35
|
unloadFactor: 0.3,
|
|
@@ -99,7 +103,10 @@ class AdjacencyList {
|
|
|
99
103
|
constructor(opts) {
|
|
100
104
|
let nodes;
|
|
101
105
|
let edges;
|
|
106
|
+
|
|
107
|
+
// @ts-expect-error TS2339
|
|
102
108
|
if (opts !== null && opts !== void 0 && opts.nodes) {
|
|
109
|
+
// @ts-expect-error TS2339
|
|
103
110
|
({
|
|
104
111
|
nodes,
|
|
105
112
|
edges
|
|
@@ -152,6 +159,7 @@ class AdjacencyList {
|
|
|
152
159
|
get stats() {
|
|
153
160
|
let edgeTypes = new Set();
|
|
154
161
|
let buckets = new Map();
|
|
162
|
+
// @ts-expect-error TS2488
|
|
155
163
|
for (let {
|
|
156
164
|
from,
|
|
157
165
|
to,
|
|
@@ -224,13 +232,17 @@ class AdjacencyList {
|
|
|
224
232
|
|
|
225
233
|
// Copy the existing edges into the new array.
|
|
226
234
|
nodes.nextId = this.#nodes.nextId;
|
|
227
|
-
this.#edges.forEach(edge => void link(this.#edges.from(edge), this.#edges.to(edge), this.#edges.typeOf(edge),
|
|
235
|
+
this.#edges.forEach(edge => void link(this.#edges.from(edge), this.#edges.to(edge), this.#edges.typeOf(edge),
|
|
236
|
+
// @ts-expect-error TS2345
|
|
237
|
+
edges, nodes, this.#params.unloadFactor));
|
|
228
238
|
|
|
229
239
|
// We expect to preserve the same number of edges.
|
|
230
240
|
(0, _assert().default)(this.#edges.count === edges.count, `Edge mismatch! ${this.#edges.count} does not match ${edges.count}.`);
|
|
231
241
|
|
|
232
242
|
// Finally, copy the new data arrays over to this graph.
|
|
243
|
+
// @ts-expect-error TS2322
|
|
233
244
|
this.#nodes = nodes;
|
|
245
|
+
// @ts-expect-error TS2322
|
|
234
246
|
this.#edges = edges;
|
|
235
247
|
}
|
|
236
248
|
|
|
@@ -599,6 +611,7 @@ class SharedTypeMap {
|
|
|
599
611
|
static #TYPE = 1;
|
|
600
612
|
|
|
601
613
|
/** The largest possible capacity. */
|
|
614
|
+
// @ts-expect-error TS1094
|
|
602
615
|
static get MAX_CAPACITY() {
|
|
603
616
|
return Math.floor(
|
|
604
617
|
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Invalid_array_length#what_went_wrong
|
|
@@ -631,6 +644,7 @@ class SharedTypeMap {
|
|
|
631
644
|
|
|
632
645
|
/** The address of the first item in the map. */
|
|
633
646
|
get addressableLimit() {
|
|
647
|
+
// @ts-expect-error TS2339
|
|
634
648
|
return this.constructor.HEADER_SIZE + this.capacity;
|
|
635
649
|
}
|
|
636
650
|
|
|
@@ -653,7 +667,6 @@ class SharedTypeMap {
|
|
|
653
667
|
BYTES_PER_ELEMENT
|
|
654
668
|
} = Uint32Array;
|
|
655
669
|
let CAPACITY = SharedTypeMap.#CAPACITY;
|
|
656
|
-
// $FlowFixMe[incompatible-call]
|
|
657
670
|
this.data = new Uint32Array(new _sharedBuffer.SharedBuffer(this.getLength(capacityOrData) * BYTES_PER_ELEMENT));
|
|
658
671
|
this.data[CAPACITY] = capacityOrData;
|
|
659
672
|
} else {
|
|
@@ -670,6 +683,7 @@ class SharedTypeMap {
|
|
|
670
683
|
* and is expected to be of equal or smaller capacity to this map.
|
|
671
684
|
*/
|
|
672
685
|
set(data) {
|
|
686
|
+
// @ts-expect-error TS2339
|
|
673
687
|
let {
|
|
674
688
|
HEADER_SIZE,
|
|
675
689
|
ITEM_SIZE
|
|
@@ -720,6 +734,7 @@ class SharedTypeMap {
|
|
|
720
734
|
* get the length of the map, in bytes.
|
|
721
735
|
*/
|
|
722
736
|
getLength(capacity = this.capacity) {
|
|
737
|
+
// @ts-expect-error TS2339
|
|
723
738
|
let {
|
|
724
739
|
HEADER_SIZE,
|
|
725
740
|
ITEM_SIZE
|
|
@@ -729,6 +744,7 @@ class SharedTypeMap {
|
|
|
729
744
|
|
|
730
745
|
/** Get the next available address in the map. */
|
|
731
746
|
getNextAddress() {
|
|
747
|
+
// @ts-expect-error TS2339
|
|
732
748
|
let {
|
|
733
749
|
HEADER_SIZE,
|
|
734
750
|
ITEM_SIZE
|
|
@@ -738,6 +754,7 @@ class SharedTypeMap {
|
|
|
738
754
|
|
|
739
755
|
/** Get the address of the first item with the given hash. */
|
|
740
756
|
head(hash) {
|
|
757
|
+
// @ts-expect-error TS2339
|
|
741
758
|
let {
|
|
742
759
|
HEADER_SIZE
|
|
743
760
|
} = this.constructor;
|
|
@@ -763,6 +780,7 @@ class SharedTypeMap {
|
|
|
763
780
|
let COUNT = SharedTypeMap.#COUNT;
|
|
764
781
|
let NEXT = SharedTypeMap.#NEXT;
|
|
765
782
|
let TYPE = SharedTypeMap.#TYPE;
|
|
783
|
+
// @ts-expect-error TS2339
|
|
766
784
|
let {
|
|
767
785
|
HEADER_SIZE
|
|
768
786
|
} = this.constructor;
|
|
@@ -789,6 +807,7 @@ class SharedTypeMap {
|
|
|
789
807
|
let COUNT = SharedTypeMap.#COUNT;
|
|
790
808
|
let NEXT = SharedTypeMap.#NEXT;
|
|
791
809
|
let TYPE = SharedTypeMap.#TYPE;
|
|
810
|
+
// @ts-expect-error TS2339
|
|
792
811
|
let {
|
|
793
812
|
HEADER_SIZE
|
|
794
813
|
} = this.constructor;
|
|
@@ -801,6 +820,7 @@ class SharedTypeMap {
|
|
|
801
820
|
let candidate = head;
|
|
802
821
|
while (candidate !== null && candidate !== item) {
|
|
803
822
|
prev = candidate;
|
|
823
|
+
// @ts-expect-error TS2322
|
|
804
824
|
candidate = this.next(candidate);
|
|
805
825
|
}
|
|
806
826
|
if (prev !== null && next !== null) {
|
|
@@ -818,6 +838,7 @@ class SharedTypeMap {
|
|
|
818
838
|
forEach(cb) {
|
|
819
839
|
let max = this.count;
|
|
820
840
|
let len = this.length;
|
|
841
|
+
// @ts-expect-error TS2339
|
|
821
842
|
let {
|
|
822
843
|
ITEM_SIZE
|
|
823
844
|
} = this.constructor;
|
|
@@ -834,10 +855,10 @@ class SharedTypeMap {
|
|
|
834
855
|
// See https://github.com/facebook/flow/issues/1163#issuecomment-353523840
|
|
835
856
|
/*:: @@iterator(): Iterator<TAddress> { return ({}: any); } */
|
|
836
857
|
|
|
837
|
-
// $FlowFixMe[unsupported-syntax]
|
|
838
858
|
*[Symbol.iterator]() {
|
|
839
859
|
let max = this.count;
|
|
840
860
|
let len = this.length;
|
|
861
|
+
// @ts-expect-error TS2339
|
|
841
862
|
let {
|
|
842
863
|
ITEM_SIZE
|
|
843
864
|
} = this.constructor;
|
|
@@ -849,6 +870,7 @@ class SharedTypeMap {
|
|
|
849
870
|
}
|
|
850
871
|
}
|
|
851
872
|
inspect() {
|
|
873
|
+
// @ts-expect-error TS2339
|
|
852
874
|
const {
|
|
853
875
|
HEADER_SIZE
|
|
854
876
|
} = this.constructor;
|
|
@@ -1168,6 +1190,7 @@ class EdgeTypeMap extends SharedTypeMap {
|
|
|
1168
1190
|
|
|
1169
1191
|
/** Get the next available address in the map. */
|
|
1170
1192
|
getNextAddress() {
|
|
1193
|
+
// @ts-expect-error TS2339
|
|
1171
1194
|
let {
|
|
1172
1195
|
ITEM_SIZE
|
|
1173
1196
|
} = this.constructor;
|
package/lib/BitSet.js
CHANGED
package/lib/ContentGraph.js
CHANGED
|
@@ -30,18 +30,14 @@ class ContentGraph extends _Graph.default {
|
|
|
30
30
|
this._nodeIdToContentKey = new Map();
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
|
-
|
|
34
|
-
// $FlowFixMe[prop-missing]
|
|
35
33
|
static deserialize(opts) {
|
|
36
34
|
return new ContentGraph(opts);
|
|
37
35
|
}
|
|
38
|
-
|
|
39
|
-
// $FlowFixMe[prop-missing]
|
|
40
36
|
serialize() {
|
|
41
|
-
// $FlowFixMe[prop-missing]
|
|
42
37
|
return {
|
|
43
38
|
...super.serialize(),
|
|
44
39
|
_contentKeyToNodeId: this._contentKeyToNodeId,
|
|
40
|
+
// @ts-expect-error TS2353
|
|
45
41
|
_nodeIdToContentKey: this._nodeIdToContentKey
|
|
46
42
|
};
|
|
47
43
|
}
|
package/lib/Graph.js
CHANGED
|
@@ -248,6 +248,7 @@ class Graph {
|
|
|
248
248
|
context: null
|
|
249
249
|
}];
|
|
250
250
|
while (queue.length !== 0) {
|
|
251
|
+
// @ts-expect-error TS2339
|
|
251
252
|
let {
|
|
252
253
|
nodeId,
|
|
253
254
|
context
|
|
@@ -257,7 +258,6 @@ class Graph {
|
|
|
257
258
|
skipped = false;
|
|
258
259
|
let newContext = visit(nodeId, context, actions);
|
|
259
260
|
if (typeof newContext !== 'undefined') {
|
|
260
|
-
// $FlowFixMe[reassign-const]
|
|
261
261
|
context = newContext;
|
|
262
262
|
}
|
|
263
263
|
if (skipped) {
|
|
@@ -366,15 +366,18 @@ class Graph {
|
|
|
366
366
|
const enter = typeof visit === 'function' ? visit : visit.enter;
|
|
367
367
|
while (queue.length !== 0) {
|
|
368
368
|
const command = queue.pop();
|
|
369
|
+
|
|
370
|
+
// @ts-expect-error TS18048
|
|
369
371
|
if (command.exit != null) {
|
|
372
|
+
// @ts-expect-error TS2339
|
|
370
373
|
let {
|
|
371
374
|
nodeId,
|
|
372
375
|
context,
|
|
373
376
|
exit
|
|
374
377
|
} = command;
|
|
378
|
+
// @ts-expect-error TS18048
|
|
375
379
|
let newContext = exit(nodeId, command.context, actions);
|
|
376
380
|
if (typeof newContext !== 'undefined') {
|
|
377
|
-
// $FlowFixMe[reassign-const]
|
|
378
381
|
context = newContext;
|
|
379
382
|
}
|
|
380
383
|
if (skipped) {
|
|
@@ -385,6 +388,7 @@ class Graph {
|
|
|
385
388
|
return context;
|
|
386
389
|
}
|
|
387
390
|
} else {
|
|
391
|
+
// @ts-expect-error TS2339
|
|
388
392
|
let {
|
|
389
393
|
nodeId,
|
|
390
394
|
context
|
|
@@ -395,7 +399,6 @@ class Graph {
|
|
|
395
399
|
if (enter) {
|
|
396
400
|
let newContext = enter(nodeId, context, actions);
|
|
397
401
|
if (typeof newContext !== 'undefined') {
|
|
398
|
-
// $FlowFixMe[reassign-const]
|
|
399
402
|
context = newContext;
|
|
400
403
|
}
|
|
401
404
|
}
|
|
@@ -440,6 +443,8 @@ class Graph {
|
|
|
440
443
|
if (stop === true) {
|
|
441
444
|
return node;
|
|
442
445
|
}
|
|
446
|
+
|
|
447
|
+
// @ts-expect-error TS2345
|
|
443
448
|
for (let child of this.getNodeIdsConnectedFrom(node)) {
|
|
444
449
|
if (!visited.has(child)) {
|
|
445
450
|
visited.add(child);
|
package/lib/shared-buffer.js
CHANGED
|
@@ -7,7 +7,7 @@ exports.SharedBuffer = void 0;
|
|
|
7
7
|
// Copy from @atlaspack/utils to fix: https://github.com/stackblitz/core/issues/1855
|
|
8
8
|
let SharedBuffer = exports.SharedBuffer = void 0;
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// @ts-expect-error TS2339
|
|
11
11
|
if (process.browser) {
|
|
12
12
|
exports.SharedBuffer = SharedBuffer = ArrayBuffer;
|
|
13
13
|
// Safari has removed the constructor
|
package/lib/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/graph",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.10-typescript-08dcc1c9b.0",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"publishConfig": {
|
|
@@ -11,20 +11,23 @@
|
|
|
11
11
|
"url": "https://github.com/atlassian-labs/atlaspack.git"
|
|
12
12
|
},
|
|
13
13
|
"main": "lib/index.js",
|
|
14
|
-
"source": "src/index.
|
|
14
|
+
"source": "src/index.ts",
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">= 16.0.0"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"benchmark": "node ./benchmark/BitSet.js"
|
|
19
|
+
"benchmark": "node ./benchmark/BitSet.js",
|
|
20
|
+
"check-ts": "tsc --noEmit"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@atlaspack/feature-flags": "2.19.
|
|
23
|
+
"@atlaspack/feature-flags": "2.19.3-typescript-08dcc1c9b.0",
|
|
23
24
|
"nullthrows": "^1.1.1"
|
|
24
25
|
},
|
|
25
26
|
"devDependencies": {
|
|
26
|
-
"@atlaspack/babel-register": "2.14.
|
|
27
|
+
"@atlaspack/babel-register": "2.14.2-typescript-08dcc1c9b.0",
|
|
27
28
|
"benny": "^3.7.1"
|
|
28
29
|
},
|
|
29
|
-
"type": "commonjs"
|
|
30
|
+
"type": "commonjs",
|
|
31
|
+
"types": "src/index.ts",
|
|
32
|
+
"gitHead": "08dcc1c9bcdc6ab931d55e05ccc0f45669de2f22"
|
|
30
33
|
}
|