@atlaspack/graph 3.5.12 → 3.5.14
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/CHANGELOG.md +16 -0
- package/lib/{Graph.d.ts → types/Graph.d.ts} +1 -1
- package/package.json +7 -5
- package/src/Graph.ts +1 -1
- /package/lib/{AdjacencyList.d.ts → types/AdjacencyList.d.ts} +0 -0
- /package/lib/{BitSet.d.ts → types/BitSet.d.ts} +0 -0
- /package/lib/{ContentGraph.d.ts → types/ContentGraph.d.ts} +0 -0
- /package/lib/{index.d.ts → types/index.d.ts} +0 -0
- /package/lib/{shared-buffer.d.ts → types/shared-buffer.d.ts} +0 -0
- /package/lib/{types.d.ts → types/types.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaspack/graph
|
|
2
2
|
|
|
3
|
+
## 3.5.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`f6b3f22`](https://github.com/atlassian-labs/atlaspack/commit/f6b3f2276c7e417580b49c4879563aab51f156b1)]:
|
|
8
|
+
- @atlaspack/feature-flags@2.23.0
|
|
9
|
+
- @atlaspack/types-internal@2.19.1
|
|
10
|
+
|
|
11
|
+
## 3.5.13
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`7f5841c`](https://github.com/atlassian-labs/atlaspack/commit/7f5841c39df049f9546cccbeea2a7337e0337b45), [`73dd7ba`](https://github.com/atlassian-labs/atlaspack/commit/73dd7baab69456ef2f6e4a0cc7dbb04f407eb148)]:
|
|
16
|
+
- @atlaspack/types-internal@2.19.0
|
|
17
|
+
- @atlaspack/feature-flags@2.22.0
|
|
18
|
+
|
|
3
19
|
## 3.5.12
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import AdjacencyList, { SerializedAdjacencyList } from './AdjacencyList';
|
|
2
2
|
import type { Edge, NodeId } from './types';
|
|
3
|
-
import type { TraversalActions, GraphVisitor, GraphTraversalCallback } from '@atlaspack/types';
|
|
3
|
+
import type { TraversalActions, GraphVisitor, GraphTraversalCallback } from '@atlaspack/types-internal';
|
|
4
4
|
import { BitSet } from './BitSet';
|
|
5
5
|
export type NullEdgeType = 1;
|
|
6
6
|
export declare const NULL_EDGE_TYPE: NullEdgeType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/graph",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.14",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,16 +12,18 @@
|
|
|
12
12
|
},
|
|
13
13
|
"main": "./lib/index.js",
|
|
14
14
|
"source": "./src/index.ts",
|
|
15
|
-
"types": "./lib/index.d.ts",
|
|
15
|
+
"types": "./lib/types/index.d.ts",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">= 16.0.0"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"benchmark": "node ./benchmark/BitSet.js",
|
|
21
|
-
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
21
|
+
"check-ts": "tsc --emitDeclarationOnly --rootDir src",
|
|
22
|
+
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
24
|
-
"@atlaspack/
|
|
25
|
+
"@atlaspack/types-internal": "2.19.1",
|
|
26
|
+
"@atlaspack/feature-flags": "2.23.0",
|
|
25
27
|
"nullthrows": "^1.1.1"
|
|
26
28
|
},
|
|
27
29
|
"devDependencies": {
|
|
@@ -29,4 +31,4 @@
|
|
|
29
31
|
"benny": "^3.7.1"
|
|
30
32
|
},
|
|
31
33
|
"type": "commonjs"
|
|
32
|
-
}
|
|
34
|
+
}
|
package/src/Graph.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|