extension 2.0.0-beta.5 → 2.0.0-beta.7

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/cli.js CHANGED
@@ -117,7 +117,7 @@ var package_default = {
117
117
  node: ">=18"
118
118
  },
119
119
  name: "extension",
120
- version: "2.0.0-beta.5",
120
+ version: "2.0.0-beta.7",
121
121
  description: "Create cross-browser extensions with no build configuration.",
122
122
  main: "./dist/cli.js",
123
123
  types: "./dist/cli.d.ts",
@@ -173,15 +173,15 @@ var package_default = {
173
173
  "webextension-polyfill": "^0.12.0"
174
174
  },
175
175
  devDependencies: {
176
- "@types/jest": "^29.5.11",
176
+ "@types/jest": "^29.5.14",
177
177
  "@types/mock-fs": "^4.13.4",
178
- "@types/semver": "^7.5.6",
178
+ "@types/semver": "^7.5.8",
179
179
  jest: "^29.7.0",
180
- "mock-fs": "^5.2.0",
181
- "ts-jest": "^29.1.2",
180
+ "mock-fs": "^5.4.1",
181
+ "ts-jest": "^29.2.5",
182
182
  tsconfig: "*",
183
- tsup: "^8.0.1",
184
- typescript: "5.3.3"
183
+ tsup: "^8.3.5",
184
+ typescript: "5.7.2"
185
185
  }
186
186
  };
187
187
 
@@ -7,7 +7,12 @@
7
7
 
8
8
  declare namespace NodeJS {
9
9
  interface ProcessEnv {
10
- readonly EXTENSION_BROWSER: 'chrome' | 'edge' | 'firefox' | 'chromium-based' | 'gecko-based'
10
+ readonly EXTENSION_BROWSER:
11
+ | 'chrome'
12
+ | 'edge'
13
+ | 'firefox'
14
+ | 'chromium-based'
15
+ | 'gecko-based'
11
16
  readonly EXTENSION_MODE: 'development' | 'production'
12
17
  }
13
18
  }
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "node": ">=18"
10
10
  },
11
11
  "name": "extension",
12
- "version": "2.0.0-beta.5",
12
+ "version": "2.0.0-beta.7",
13
13
  "description": "Create cross-browser extensions with no build configuration.",
14
14
  "main": "./dist/cli.js",
15
15
  "types": "./dist/cli.d.ts",
@@ -50,18 +50,18 @@
50
50
  "update-check": "^1.5.4",
51
51
  "webextension-polyfill": "^0.12.0",
52
52
  "extension-create": "2.0.0-beta.3",
53
- "extension-develop": "2.0.0-beta.5"
53
+ "extension-develop": "2.0.0-beta.7"
54
54
  },
55
55
  "devDependencies": {
56
- "@types/jest": "^29.5.11",
56
+ "@types/jest": "^29.5.14",
57
57
  "@types/mock-fs": "^4.13.4",
58
- "@types/semver": "^7.5.6",
58
+ "@types/semver": "^7.5.8",
59
59
  "jest": "^29.7.0",
60
- "mock-fs": "^5.2.0",
61
- "ts-jest": "^29.1.2",
60
+ "mock-fs": "^5.4.1",
61
+ "ts-jest": "^29.2.5",
62
62
  "tsconfig": "*",
63
- "tsup": "^8.0.1",
64
- "typescript": "5.3.3"
63
+ "tsup": "^8.3.5",
64
+ "typescript": "5.7.2"
65
65
  },
66
66
  "scripts": {
67
67
  "watch": "pnpm compile --watch",