@atlaspack/query 2.14.27-dev-inline-requires-reuse-bdc9ca9c3.0 → 2.14.28-inline-requires-take-2-2a0c642df.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @atlaspack/query
2
2
 
3
+ ## 2.14.27
4
+
5
+ ### Patch Changes
6
+
7
+ - [#742](https://github.com/atlassian-labs/atlaspack/pull/742) [`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd) Thanks [@yamadapc](https://github.com/yamadapc)! - Internal changes and bug fixes to environmentDeduplication flag
8
+
9
+ - Updated dependencies [[`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd), [`b6e72b6`](https://github.com/atlassian-labs/atlaspack/commit/b6e72b6dd2b517cbb0e700fa69e63332d3eacb1e)]:
10
+ - @atlaspack/cache@3.2.21
11
+ - @atlaspack/graph@3.5.15
12
+ - @atlaspack/core@2.23.2
13
+
3
14
  ## 2.14.26
4
15
 
5
16
  ### Patch Changes
package/lib/index.js CHANGED
@@ -39,7 +39,7 @@ const {
39
39
  requestGraphEdgeTypes
40
40
  },
41
41
  LMDBLiteCache
42
- } = process.env.ATLASPACK_REGISTER_USE_SRC === 'true' ? require('./deep-imports.js') : require('./deep-imports.ts');
42
+ } = process.env.ATLASPACK_REGISTER_USE_SRC === 'true' ? require('./deep-imports.ts') : require('./deep-imports.js');
43
43
  async function loadGraphs(cacheDir) {
44
44
  let cacheInfo = new Map();
45
45
  const cache = new LMDBLiteCache(cacheDir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/query",
3
- "version": "2.14.27-dev-inline-requires-reuse-bdc9ca9c3.0",
3
+ "version": "2.14.28-inline-requires-take-2-2a0c642df.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,20 +16,21 @@
16
16
  "bin": {
17
17
  "atlaspack-query": "bin/atlaspack-query.js"
18
18
  },
19
- "main": "src/index.js",
19
+ "main": "lib/index.js",
20
+ "source": "src/index.ts",
20
21
  "dependencies": {
21
- "@atlaspack/cache": "3.2.21-dev-inline-requires-reuse-bdc9ca9c3.0",
22
- "@atlaspack/core": "2.23.2-dev-inline-requires-reuse-bdc9ca9c3.0",
23
- "@atlaspack/graph": "3.5.15-dev-inline-requires-reuse-bdc9ca9c3.0",
22
+ "@atlaspack/cache": "3.2.22-inline-requires-take-2-2a0c642df.0",
23
+ "@atlaspack/core": "2.23.3-inline-requires-take-2-2a0c642df.0",
24
+ "@atlaspack/graph": "3.5.16-inline-requires-take-2-2a0c642df.0",
24
25
  "nullthrows": "^1.1.1",
25
26
  "table": "^6.8.1",
26
27
  "v8-compile-cache": "^2.0.0"
27
28
  },
28
29
  "devDependencies": {
29
- "@atlaspack/babel-register": "2.14.3-dev-inline-requires-reuse-bdc9ca9c3.0",
30
+ "@atlaspack/babel-register": "2.14.4-inline-requires-take-2-2a0c642df.0",
30
31
  "@babel/core": "^7.22.11",
31
32
  "rimraf": "^5.0.5"
32
33
  },
33
34
  "type": "commonjs",
34
- "gitHead": "bdc9ca9c38f45155a6d6f280e343a29e3f030a83"
35
+ "gitHead": "2a0c642dfe354e30a8cbd23be0b1a283eab54040"
35
36
  }
package/src/index.ts CHANGED
@@ -16,8 +16,8 @@ const {
16
16
  },
17
17
  LMDBLiteCache,
18
18
  } = process.env.ATLASPACK_REGISTER_USE_SRC === 'true'
19
- ? require('./deep-imports.js')
20
- : require('./deep-imports.ts');
19
+ ? require('./deep-imports.ts')
20
+ : require('./deep-imports.js');
21
21
 
22
22
  export async function loadGraphs(cacheDir: string): Promise<{
23
23
  // @ts-expect-error TS2749