wxt 0.14.2 → 0.14.3
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/dist/{chunk-TX6NW7VP.js → chunk-E6XT3LOQ.js} +1 -1
- package/dist/cli.js +3 -2
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/testing.js +1 -1
- package/package.json +1 -1
- package/dist/cli.d.ts +0 -2
package/dist/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import "./chunk-VBXJIVYU.js";
|
|
|
4
4
|
import cac from "cac";
|
|
5
5
|
|
|
6
6
|
// package.json
|
|
7
|
-
var version = "0.14.
|
|
7
|
+
var version = "0.14.3";
|
|
8
8
|
|
|
9
9
|
// src/core/utils/fs.ts
|
|
10
10
|
import fs from "fs-extra";
|
|
@@ -3193,5 +3193,6 @@ function wrapAction(cb, options) {
|
|
|
3193
3193
|
}
|
|
3194
3194
|
function getArrayFromFlags(flags, name) {
|
|
3195
3195
|
const array = [flags[name]].flat();
|
|
3196
|
-
|
|
3196
|
+
const result = array.filter((item) => item != null);
|
|
3197
|
+
return result.length ? result : void 0;
|
|
3197
3198
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -4373,7 +4373,7 @@ function getChunkSortWeight(filename) {
|
|
|
4373
4373
|
var import_picocolors4 = __toESM(require("picocolors"), 1);
|
|
4374
4374
|
|
|
4375
4375
|
// package.json
|
|
4376
|
-
var version = "0.14.
|
|
4376
|
+
var version = "0.14.3";
|
|
4377
4377
|
|
|
4378
4378
|
// src/core/utils/log/printHeader.ts
|
|
4379
4379
|
var import_consola2 = require("consola");
|
package/dist/index.d.cts
CHANGED
|
@@ -62,6 +62,6 @@ declare function prepare(config: InlineConfig): Promise<void>;
|
|
|
62
62
|
*/
|
|
63
63
|
declare function zip(config?: InlineConfig): Promise<string[]>;
|
|
64
64
|
|
|
65
|
-
var version = "0.14.
|
|
65
|
+
var version = "0.14.3";
|
|
66
66
|
|
|
67
67
|
export { BuildOutput, ExtensionRunnerConfig, InlineConfig, UserConfig, WxtDevServer, build, clean, createServer, defineConfig, defineRunnerConfig, initialize, prepare, version, zip };
|
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,6 @@ declare function prepare(config: InlineConfig): Promise<void>;
|
|
|
62
62
|
*/
|
|
63
63
|
declare function zip(config?: InlineConfig): Promise<string[]>;
|
|
64
64
|
|
|
65
|
-
var version = "0.14.
|
|
65
|
+
var version = "0.14.3";
|
|
66
66
|
|
|
67
67
|
export { BuildOutput, ExtensionRunnerConfig, InlineConfig, UserConfig, WxtDevServer, build, clean, createServer, defineConfig, defineRunnerConfig, initialize, prepare, version, zip };
|
package/dist/index.js
CHANGED
package/dist/testing.js
CHANGED
package/package.json
CHANGED
package/dist/cli.d.ts
DELETED