@atlaspack/cli 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/lib/cli.js +1 -1
- package/package.json +14 -14
- package/src/cli.js +1 -2
package/lib/cli.js
CHANGED
|
@@ -163,7 +163,7 @@ switch (process.platform) {
|
|
|
163
163
|
const commonOptions = {
|
|
164
164
|
'--no-cache': 'disable the filesystem cache',
|
|
165
165
|
'--config <path>': 'specify which config to use. can be a path or a package name',
|
|
166
|
-
'--cache-dir <path>': 'set the cache directory. defaults to ".
|
|
166
|
+
'--cache-dir <path>': 'set the cache directory. defaults to ".parcel-cache"',
|
|
167
167
|
'--watch-dir <path>': 'set the root watch directory. defaults to nearest lockfile or source control dir.',
|
|
168
168
|
'--watch-ignore [path]': [`list of directories watcher should not be tracking for changes. defaults to ['.git', '.hg']`, dirs => dirs.split(',')],
|
|
169
169
|
'--watch-backend': new (_commander().default.Option)('--watch-backend <name>', 'set watcher backend').choices(watcherBackendChoices),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/cli",
|
|
3
|
-
"version": "2.12.1-dev.
|
|
3
|
+
"version": "2.12.1-dev.3401+b483af77f",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"node": ">= 16.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@atlaspack/config-default": "2.12.1-dev.
|
|
27
|
-
"@atlaspack/core": "2.12.1-dev.
|
|
28
|
-
"@atlaspack/diagnostic": "2.12.1-dev.
|
|
29
|
-
"@atlaspack/events": "2.12.1-dev.
|
|
30
|
-
"@atlaspack/feature-flags": "2.12.1-dev.
|
|
31
|
-
"@atlaspack/fs": "2.12.1-dev.
|
|
32
|
-
"@atlaspack/logger": "2.12.1-dev.
|
|
33
|
-
"@atlaspack/package-manager": "2.12.1-dev.
|
|
34
|
-
"@atlaspack/reporter-cli": "2.12.1-dev.
|
|
35
|
-
"@atlaspack/reporter-dev-server": "2.12.1-dev.
|
|
36
|
-
"@atlaspack/reporter-tracer": "2.12.1-dev.
|
|
37
|
-
"@atlaspack/utils": "2.12.1-dev.
|
|
26
|
+
"@atlaspack/config-default": "2.12.1-dev.3401+b483af77f",
|
|
27
|
+
"@atlaspack/core": "2.12.1-dev.3401+b483af77f",
|
|
28
|
+
"@atlaspack/diagnostic": "2.12.1-dev.3401+b483af77f",
|
|
29
|
+
"@atlaspack/events": "2.12.1-dev.3401+b483af77f",
|
|
30
|
+
"@atlaspack/feature-flags": "2.12.1-dev.3401+b483af77f",
|
|
31
|
+
"@atlaspack/fs": "2.12.1-dev.3401+b483af77f",
|
|
32
|
+
"@atlaspack/logger": "2.12.1-dev.3401+b483af77f",
|
|
33
|
+
"@atlaspack/package-manager": "2.12.1-dev.3401+b483af77f",
|
|
34
|
+
"@atlaspack/reporter-cli": "2.12.1-dev.3401+b483af77f",
|
|
35
|
+
"@atlaspack/reporter-dev-server": "2.12.1-dev.3401+b483af77f",
|
|
36
|
+
"@atlaspack/reporter-tracer": "2.12.1-dev.3401+b483af77f",
|
|
37
|
+
"@atlaspack/utils": "2.12.1-dev.3401+b483af77f",
|
|
38
38
|
"chalk": "^4.1.0",
|
|
39
39
|
"commander": "^7.0.0",
|
|
40
40
|
"get-port": "^4.2.0"
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"@babel/core": "^7.22.11",
|
|
45
45
|
"rimraf": "^5.0.5"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "b483af77f02d1258c8dad156e097b94f83671d8e"
|
|
48
48
|
}
|
package/src/cli.js
CHANGED
|
@@ -95,8 +95,7 @@ const commonOptions = {
|
|
|
95
95
|
'--no-cache': 'disable the filesystem cache',
|
|
96
96
|
'--config <path>':
|
|
97
97
|
'specify which config to use. can be a path or a package name',
|
|
98
|
-
'--cache-dir <path>':
|
|
99
|
-
'set the cache directory. defaults to ".atlaspack-cache"',
|
|
98
|
+
'--cache-dir <path>': 'set the cache directory. defaults to ".parcel-cache"',
|
|
100
99
|
'--watch-dir <path>':
|
|
101
100
|
'set the root watch directory. defaults to nearest lockfile or source control dir.',
|
|
102
101
|
'--watch-ignore [path]': [
|