@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 +1 -1
- package/lib/cli.js +2 -2
- package/package.json +5 -5
- package/src/cli.js +2 -2
package/README.md
CHANGED
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(), '.
|
|
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(), '.
|
|
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.
|
|
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.
|
|
22
|
-
"@atlaspack/core": "2.12.1-dev.
|
|
23
|
-
"@atlaspack/graph": "3.2.1-dev.
|
|
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": "
|
|
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(), '.
|
|
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(), '.
|
|
934
|
+
path.join(os.homedir(), '.parcel_query_history'),
|
|
935
935
|
() => {},
|
|
936
936
|
);
|
|
937
937
|
|