shuvi 1.0.20 → 1.0.22

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/shuvi.d.ts CHANGED
@@ -6,6 +6,6 @@ export interface ShuviOption {
6
6
  cwd?: string;
7
7
  phase?: ShuviPhase;
8
8
  mode?: ShuviMode;
9
- configFile?: string;
9
+ configFile?: string | false;
10
10
  }
11
11
  export declare function initShuvi({ config, ...options }: ShuviOption): Promise<Api>;
@@ -3,6 +3,6 @@ export interface IBuildOptions {
3
3
  config?: ShuviConfig;
4
4
  cwd?: string;
5
5
  target?: 'spa' | 'ssr';
6
- configFile?: string;
6
+ configFile?: string | false;
7
7
  }
8
8
  export declare function build(options: IBuildOptions): Promise<import("@shuvi/service/lib/core/api").Api>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuvi",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/shuvijs/shuvi.git",
@@ -25,13 +25,13 @@
25
25
  "node": ">= 16.0.0"
26
26
  },
27
27
  "dependencies": {
28
- "@shuvi/platform-shared": "1.0.20",
29
- "@shuvi/platform-web": "1.0.20",
30
- "@shuvi/service": "1.0.20",
31
- "@shuvi/shared": "1.0.20",
32
- "@shuvi/toolpack": "1.0.20",
33
- "@shuvi/utils": "1.0.20",
34
- "@shuvi/telemetry": "1.0.20",
28
+ "@shuvi/platform-shared": "1.0.22",
29
+ "@shuvi/platform-web": "1.0.22",
30
+ "@shuvi/service": "1.0.22",
31
+ "@shuvi/shared": "1.0.22",
32
+ "@shuvi/toolpack": "1.0.22",
33
+ "@shuvi/utils": "1.0.22",
34
+ "@shuvi/telemetry": "1.0.22",
35
35
  "cli-highlight": "^2.1.9",
36
36
  "commander": "5.1.0",
37
37
  "cross-spawn": "7.0.3",