@atlaspack/query 2.12.1-dev.3368 → 2.12.1-dev.3401

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/README.md CHANGED
@@ -11,7 +11,7 @@ globally available.
11
11
 
12
12
  Call `.help` to view a list of commands.
13
13
 
14
- In a project root containing a `.atlaspack-cache` folder:
14
+ In a project root containing a `.parcel-cache` folder:
15
15
 
16
16
  ```sh
17
17
  $ atlaspack-query
package/lib/cli.js CHANGED
@@ -73,7 +73,7 @@ const {
73
73
  } = require('./deep-imports.js');
74
74
  async function run(input) {
75
75
  let args = input;
76
- let cacheDir = _path().default.join(process.cwd(), '.atlaspack-cache');
76
+ let cacheDir = _path().default.join(process.cwd(), '.parcel-cache');
77
77
  if (args[0] === '--cache') {
78
78
  cacheDir = _path().default.resolve(process.cwd(), args[1]);
79
79
  args = args.slice(2);
@@ -748,7 +748,7 @@ async function run(input) {
748
748
  useGlobal: true
749
749
  });
750
750
  // $FlowFixMe[prop-missing]
751
- server.setupHistory(_path().default.join(_os().default.homedir(), '.atlaspack_query_history'), () => {});
751
+ server.setupHistory(_path().default.join(_os().default.homedir(), '.parcel_query_history'), () => {});
752
752
 
753
753
  // $FlowFixMe[prop-missing]
754
754
  server.context.bundleGraph = bundleGraph;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/query",
3
- "version": "2.12.1-dev.3368+af1db7f65",
3
+ "version": "2.12.1-dev.3401+b483af77f",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -18,9 +18,9 @@
18
18
  },
19
19
  "main": "src/index.js",
20
20
  "dependencies": {
21
- "@atlaspack/cache": "2.12.1-dev.3368+af1db7f65",
22
- "@atlaspack/core": "2.12.1-dev.3368+af1db7f65",
23
- "@atlaspack/graph": "3.2.1-dev.3368+af1db7f65",
21
+ "@atlaspack/cache": "2.12.1-dev.3401+b483af77f",
22
+ "@atlaspack/core": "2.12.1-dev.3401+b483af77f",
23
+ "@atlaspack/graph": "3.2.1-dev.3401+b483af77f",
24
24
  "nullthrows": "^1.1.1",
25
25
  "table": "^6.8.1",
26
26
  "v8-compile-cache": "^2.0.0"
@@ -30,5 +30,5 @@
30
30
  "@babel/core": "^7.22.11",
31
31
  "rimraf": "^5.0.5"
32
32
  },
33
- "gitHead": "af1db7f65c4816917ddf83716deedc536a1b8b27"
33
+ "gitHead": "b483af77f02d1258c8dad156e097b94f83671d8e"
34
34
  }
package/src/cli.js CHANGED
@@ -24,7 +24,7 @@ const {
24
24
 
25
25
  export async function run(input: string[]) {
26
26
  let args = input;
27
- let cacheDir = path.join(process.cwd(), '.atlaspack-cache');
27
+ let cacheDir = path.join(process.cwd(), '.parcel-cache');
28
28
  if (args[0] === '--cache') {
29
29
  cacheDir = path.resolve(process.cwd(), args[1]);
30
30
  args = args.slice(2);
@@ -931,7 +931,7 @@ export async function run(input: string[]) {
931
931
  const server = repl.start({useColors: true, useGlobal: true});
932
932
  // $FlowFixMe[prop-missing]
933
933
  server.setupHistory(
934
- path.join(os.homedir(), '.atlaspack_query_history'),
934
+ path.join(os.homedir(), '.parcel_query_history'),
935
935
  () => {},
936
936
  );
937
937