@rspack/cli 0.6.1 → 0.6.2-canary-d184ee3-20240417055408

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.
@@ -14,6 +14,7 @@ export declare const commonOptions: (yargs: yargs.Argv<{}>) => yargs.Argv<yargs.
14
14
  "output-path": {
15
15
  type: "string";
16
16
  describe: string;
17
+ alias: string;
17
18
  };
18
19
  mode: {
19
20
  type: "string";
@@ -39,6 +40,7 @@ export declare const commonOptions: (yargs: yargs.Argv<{}>) => yargs.Argv<yargs.
39
40
  type: "boolean";
40
41
  default: boolean;
41
42
  describe: string;
43
+ alias: string;
42
44
  };
43
45
  configName: {
44
46
  type: "array";
@@ -17,7 +17,8 @@ const commonOptions = (yargs) => {
17
17
  },
18
18
  "output-path": {
19
19
  type: "string",
20
- describe: "output path dir"
20
+ describe: "output path dir",
21
+ alias: "o"
21
22
  },
22
23
  mode: { type: "string", describe: "mode", alias: "m" },
23
24
  watch: {
@@ -38,7 +39,8 @@ const commonOptions = (yargs) => {
38
39
  devtool: {
39
40
  type: "boolean",
40
41
  default: false,
41
- describe: "devtool"
42
+ describe: "devtool",
43
+ alias: "d"
42
44
  },
43
45
  configName: {
44
46
  type: "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack/cli",
3
- "version": "0.6.1",
3
+ "version": "0.6.2-canary-d184ee3-20240417055408",
4
4
  "license": "MIT",
5
5
  "description": "CLI for rspack",
6
6
  "bin": {
@@ -30,7 +30,7 @@
30
30
  "cross-env": "^7.0.3",
31
31
  "execa": "^5.0.0",
32
32
  "internal-ip": "6.2.0",
33
- "@rspack/core": "0.6.1"
33
+ "@rspack/core": "0.6.2-canary-d184ee3-20240417055408"
34
34
  },
35
35
  "dependencies": {
36
36
  "@discoveryjs/json-ext": "^0.5.7",
@@ -41,7 +41,7 @@
41
41
  "semver": "6.3.1",
42
42
  "webpack-bundle-analyzer": "4.6.1",
43
43
  "yargs": "17.6.2",
44
- "@rspack/dev-server": "0.6.1"
44
+ "@rspack/dev-server": "0.6.2-canary-d184ee3-20240417055408"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "tsc -b ./tsconfig.build.json",