@dword-design/base-config-web-extension 4.0.5 → 4.0.6

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -96,8 +96,8 @@ export default defineBaseConfig(function (config) {
96
96
  import { defineWebExtConfig } from 'wxt';
97
97
 
98
98
  export default defineWebExtConfig({
99
- ${config.startUrl ? `chromiumArgs: ['${config.startUrl}'],` : ""}chromiumProfile: 'userdata', // chromiumArgs: ['--user-data-dir=userdata'] doesn't keep sessions across dev restarts
100
- keepProfileChanges: true,
99
+ ${[...(config.startUrl ? [`chromiumArgs: ['${config.startUrl}']`] : []), "chromiumProfile: 'userdata', // chromiumArgs: ['--user-data-dir=userdata'] doesn't keep sessions across dev restarts", "keepProfileChanges: true"].map(line => `${line},
100
+ `).join("")}
101
101
  });\n
102
102
  `
103
103
  })]),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base-config-web-extension",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "repository": "dword-design/base-config-web-extension",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",