wxt 0.17.8 → 0.17.10

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.
@@ -1,6 +1,6 @@
1
1
  export { FakeBrowser, fakeBrowser } from '@webext-core/fake-browser';
2
2
  import * as vite from 'vite';
3
- import { I as InlineConfig } from './index-cFBbMXAl.cjs';
3
+ import { I as InlineConfig } from './index-w7ohFTEX.cjs';
4
4
  import 'webextension-polyfill';
5
5
  import 'unimport';
6
6
  import 'consola';
package/dist/testing.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { FakeBrowser, fakeBrowser } from '@webext-core/fake-browser';
2
2
  import * as vite from 'vite';
3
- import { I as InlineConfig } from './index-cFBbMXAl.js';
3
+ import { I as InlineConfig } from './index-w7ohFTEX.js';
4
4
  import 'webextension-polyfill';
5
5
  import 'unimport';
6
6
  import 'consola';
package/dist/testing.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  tsconfigPaths,
6
6
  unimport,
7
7
  webextensionPolyfillMock
8
- } from "./chunk-5XQOZCZF.js";
8
+ } from "./chunk-2SH4GQGN.js";
9
9
  import "./chunk-VBXJIVYU.js";
10
10
 
11
11
  // src/testing/fake-browser.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "wxt",
3
3
  "type": "module",
4
- "version": "0.17.8",
4
+ "version": "0.17.10",
5
5
  "description": "Next gen framework for developing web extensions",
6
6
  "engines": {
7
7
  "node": ">=18",
@@ -125,6 +125,7 @@
125
125
  "webextension-polyfill": "^0.10.0"
126
126
  },
127
127
  "devDependencies": {
128
+ "@aklinker1/check": "^1.1.1",
128
129
  "@faker-js/faker": "^8.3.1",
129
130
  "@types/fs-extra": "^11.0.4",
130
131
  "@types/lodash.merge": "^4.6.9",
@@ -170,14 +171,9 @@
170
171
  "scripts": {
171
172
  "wxt": "tsx src/cli/index.ts",
172
173
  "build": "tsx scripts/build.ts",
173
- "format": "prettier --write .",
174
- "format:check": "prettier --check .",
175
- "lint": "run-p -c -s lint:*",
176
- "lint:eslint": "echo 'ESLint: TODO'",
177
- "lint:package": "publint",
178
- "compile": "run-s -c compile:*",
179
- "compile:wxt": "tsc --noEmit",
180
- "compile:virtual": "tsc --noEmit -p src/virtual",
174
+ "check": "run-s -c check:*",
175
+ "check:default": "check",
176
+ "check:tsc-virtual": "tsc --noEmit -p src/virtual",
181
177
  "test": "vitest",
182
178
  "test:coverage": "vitest run --coverage.enabled \"--coverage.include=src/**\" \"--coverage.exclude=src/core/utils/testing/**\" \"--coverage.exclude=**/*.d.ts\"",
183
179
  "prepublish": "pnpm -s build",