@atlaspack/graph 3.5.11 → 3.5.13

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @atlaspack/graph
2
2
 
3
+ ## 3.5.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`7f5841c`](https://github.com/atlassian-labs/atlaspack/commit/7f5841c39df049f9546cccbeea2a7337e0337b45), [`73dd7ba`](https://github.com/atlassian-labs/atlaspack/commit/73dd7baab69456ef2f6e4a0cc7dbb04f407eb148)]:
8
+ - @atlaspack/types-internal@2.19.0
9
+ - @atlaspack/feature-flags@2.22.0
10
+
11
+ ## 3.5.12
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`23d561e`](https://github.com/atlassian-labs/atlaspack/commit/23d561e51e68b0c38fd1ff4e4fb173e5e7b01cf2)]:
16
+ - @atlaspack/feature-flags@2.21.0
17
+
3
18
  ## 3.5.11
4
19
 
5
20
  ### 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.11",
3
+ "version": "3.5.13",
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/feature-flags": "2.20.1",
25
+ "@atlaspack/types-internal": "2.19.0",
26
+ "@atlaspack/feature-flags": "2.22.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
@@ -5,7 +5,7 @@ import type {
5
5
  TraversalActions,
6
6
  GraphVisitor,
7
7
  GraphTraversalCallback,
8
- } from '@atlaspack/types';
8
+ } from '@atlaspack/types-internal';
9
9
  import {BitSet} from './BitSet';
10
10
 
11
11
  import nullthrows from 'nullthrows';
File without changes
File without changes
File without changes