@varlet/cli 3.3.5 → 3.3.6-alpha.1720620017198

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.
@@ -173,5 +173,5 @@ export interface VarletConfig {
173
173
  _cf?: string[];
174
174
  }
175
175
  export declare function defineConfig(config: VarletConfig): VarletConfig;
176
- export declare function mergeStrategy(_: any, srcValue: any, key: any, _object: any, _source: any): any[] | undefined;
176
+ export declare function mergeStrategy(_: any, srcValue: any, key: any): any[] | undefined;
177
177
  export declare function getVarletConfig(emit?: boolean): Promise<Required<VarletConfig>>;
@@ -7,7 +7,7 @@ const { pathExistsSync, statSync } = fse;
7
7
  export function defineConfig(config) {
8
8
  return config;
9
9
  }
10
- export function mergeStrategy(_, srcValue, key, _object, _source) {
10
+ export function mergeStrategy(_, srcValue, key) {
11
11
  const keys = ['features', 'members'];
12
12
  if (keys.includes(key) && isArray(srcValue)) {
13
13
  return srcValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/cli",
3
- "version": "3.3.5",
3
+ "version": "3.3.6-alpha.1720620017198",
4
4
  "type": "module",
5
5
  "description": "cli of varlet",
6
6
  "bin": {
@@ -64,8 +64,8 @@
64
64
  "vite": "5.0.10",
65
65
  "vitest": "1.1.0",
66
66
  "vue": "3.4.21",
67
- "@varlet/shared": "3.3.5",
68
- "@varlet/vite-plugins": "3.3.5"
67
+ "@varlet/shared": "3.3.6-alpha.1720620017198",
68
+ "@varlet/vite-plugins": "3.3.6-alpha.1720620017198"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@types/babel__core": "^7.20.1",
@@ -80,9 +80,9 @@
80
80
  "@types/semver": "^7.3.9",
81
81
  "@types/sharp": "0.31.1",
82
82
  "rimraf": "^5.0.1",
83
- "@varlet/touch-emulator": "3.3.5",
84
- "@varlet/ui": "3.3.5",
85
- "@varlet/icons": "3.3.5"
83
+ "@varlet/ui": "3.3.6-alpha.1720620017198",
84
+ "@varlet/icons": "3.3.6-alpha.1720620017198",
85
+ "@varlet/touch-emulator": "3.3.6-alpha.1720620017198"
86
86
  },
87
87
  "peerDependencies": {
88
88
  "@vitest/coverage-istanbul": "1.1.0",
@@ -94,9 +94,9 @@
94
94
  "lodash-es": "^4.17.21",
95
95
  "vue": "3.4.21",
96
96
  "vue-router": "4.2.0",
97
- "@varlet/icons": "3.3.5",
98
- "@varlet/touch-emulator": "3.3.5",
99
- "@varlet/ui": "3.3.5"
97
+ "@varlet/icons": "3.3.6-alpha.1720620017198",
98
+ "@varlet/ui": "3.3.6-alpha.1720620017198",
99
+ "@varlet/touch-emulator": "3.3.6-alpha.1720620017198"
100
100
  },
101
101
  "scripts": {
102
102
  "dev": "tsc --watch",