diff --git a/packages/wxt/package.json b/packages/wxt/package.json index e20c5f8f0..df654cd09 100644 --- a/packages/wxt/package.json +++ b/packages/wxt/package.json @@ -67,6 +67,10 @@ "./modules": { "types": "./dist/modules.d.ts", "default": "./dist/modules.mjs" + }, + "./background-client": { + "types": "./dist/background-client.d.ts", + "default": "./dist/background-client.mjs" } }, "scripts": { @@ -123,7 +127,7 @@ "publish-browser-extension": "^2.2.2", "scule": "^1.3.0", "unimport": "^3.13.1", - "vite": "^5.0.0 || ^6.0.0", + "vite": "^5.0.0 || <=6.0.8", "vite-node": "^2.1.4", "web-ext-run": "^0.2.1", "webextension-polyfill": "^0.12.0" diff --git a/packages/wxt/src/@types/globals.d.ts b/packages/wxt/src/@types/globals.d.ts index 290d34474..e4502f7a2 100644 --- a/packages/wxt/src/@types/globals.d.ts +++ b/packages/wxt/src/@types/globals.d.ts @@ -1,8 +1,15 @@ +/** + * Replaced by an import to `wxt/background-client`, which changes based on the + * manifest version being targeted. + */ +declare const __WXT_BACKGROUND_CLIENT_IMPORT__: void; + +// Dev server globals, replaced during development declare const __DEV_SERVER_PROTOCOL__: string; declare const __DEV_SERVER_HOSTNAME__: string; declare const __DEV_SERVER_PORT__: string; -// Globals defined by the vite-plugins/devServerGlobals.ts and utils/globals.ts +// Global env vars provided by WXT interface ImportMetaEnv { readonly COMMAND: WxtCommand; readonly MANIFEST_VERSION: 2 | 3; diff --git a/packages/wxt/src/virtual/utils/reload-content-scripts.ts b/packages/wxt/src/background-client.ts similarity index 51% rename from packages/wxt/src/virtual/utils/reload-content-scripts.ts rename to packages/wxt/src/background-client.ts index 11b5e0c87..73941818d 100644 --- a/packages/wxt/src/virtual/utils/reload-content-scripts.ts +++ b/packages/wxt/src/background-client.ts @@ -1,9 +1,57 @@ +/** + * This file contains all the code required for the background to communicate + * with the dev server during development: + * + * - Reload extension or parts of extension when files are saved. + * - Keep MV3 service worker alive indefinitely. + * + * It is not imported directly (`import "wxt/background-client"`), but from + * the dev server (`import "http://localhost:3000/@id/wxt/background-client"`) + * to ensure `import.meta.hot` is defined by Vite. + */ + import { browser } from 'wxt/browser'; -import { logger } from '../../sandbox/utils/logger'; +import { logger } from './sandbox/utils/logger'; import { MatchPattern } from 'wxt/sandbox'; -import type { ReloadContentScriptPayload } from '../../sandbox/dev-server-websocket'; -export function reloadContentScript(payload: ReloadContentScriptPayload) { +console.log(import.meta.hot); +if (import.meta.hot) { + import.meta.hot.on('wxt:reload-extension', () => browser.runtime.reload()); + import.meta.hot.on('wxt:reload-content-script', (event) => + reloadContentScript(event), + ); + + if (import.meta.env.MANIFEST_VERSION === 3) { + let backgroundInitialized = false; + // Tell the server the background script is loaded and ready to receive events + import.meta.hot.on('vite:ws:connect', () => { + if (backgroundInitialized) return; + + import.meta.hot?.send('wxt:background-initialized'); + backgroundInitialized = true; + }); + + // Web Socket will disconnect if the service worker is killed. Supposedly, + // just having a web socket connection active should keep the service worker + // alive, but when this was originally implemented on older versions of + // Chrome, that was not true. So this code has stayed around. + // See: https://developer.chrome.com/blog/longer-esw-lifetimes/ + setInterval(async () => { + // Calling an async browser API resets the service worker's timeout + await browser.runtime.getPlatformInfo(); + }, 5e3); + } + + browser.commands.onCommand.addListener((command) => { + if (command === 'wxt:reload-extension') { + browser.runtime.reload(); + } + }); +} else { + console.error('[wxt] HMR context, import.meta.hot, not found'); +} + +function reloadContentScript(payload: ReloadContentScriptPayload) { const manifest = browser.runtime.getManifest(); if (manifest.manifest_version == 2) { void reloadContentScriptMv2(payload); @@ -12,7 +60,7 @@ export function reloadContentScript(payload: ReloadContentScriptPayload) { } } -export async function reloadContentScriptMv3({ +async function reloadContentScriptMv3({ registration, contentScript, }: ReloadContentScriptPayload) { @@ -25,9 +73,7 @@ export async function reloadContentScriptMv3({ type ContentScript = ReloadContentScriptPayload['contentScript']; -export async function reloadManifestContentScriptMv3( - contentScript: ContentScript, -) { +async function reloadManifestContentScriptMv3(contentScript: ContentScript) { const id = `wxt:${contentScript.js![0]}`; logger.log('Reloading content script:', contentScript); const registered = await browser.scripting.getRegisteredContentScripts(); @@ -46,9 +92,7 @@ export async function reloadManifestContentScriptMv3( await reloadTabsForContentScript(contentScript); } -export async function reloadRuntimeContentScriptMv3( - contentScript: ContentScript, -) { +async function reloadRuntimeContentScriptMv3(contentScript: ContentScript) { logger.log('Reloading content script:', contentScript); const registered = await browser.scripting.getRegisteredContentScripts(); logger.debug('Existing scripts:', registered); @@ -92,8 +136,15 @@ async function reloadTabsForContentScript(contentScript: ContentScript) { ); } -export async function reloadContentScriptMv2( - _payload: ReloadContentScriptPayload, -) { +async function reloadContentScriptMv2(_payload: ReloadContentScriptPayload) { throw Error('TODO: reloadContentScriptMv2'); } + +interface ReloadContentScriptPayload { + registration?: 'manifest' | 'runtime'; + contentScript: { + matches: string[]; + js?: string[]; + css?: string[]; + }; +} diff --git a/packages/wxt/src/core/builders/vite/index.ts b/packages/wxt/src/core/builders/vite/index.ts index e6cfec782..a735f29a8 100644 --- a/packages/wxt/src/core/builders/vite/index.ts +++ b/packages/wxt/src/core/builders/vite/index.ts @@ -73,7 +73,7 @@ export async function createViteBuilder( config.plugins.push( wxtPlugins.download(wxtConfig), wxtPlugins.devHtmlPrerender(wxtConfig, server), - wxtPlugins.resolveVirtualModules(wxtConfig), + wxtPlugins.resolveVirtualModules(wxtConfig, server), wxtPlugins.devServerGlobals(wxtConfig, server), wxtPlugins.tsconfigPaths(wxtConfig), wxtPlugins.noopBackground(), diff --git a/packages/wxt/src/core/builders/vite/plugins/devServerGlobals.ts b/packages/wxt/src/core/builders/vite/plugins/devServerGlobals.ts index 3cb992ff1..04a9d8834 100644 --- a/packages/wxt/src/core/builders/vite/plugins/devServerGlobals.ts +++ b/packages/wxt/src/core/builders/vite/plugins/devServerGlobals.ts @@ -11,7 +11,7 @@ export function devServerGlobals( return { name: 'wxt:dev-server-globals', config() { - if (server == null || config.command == 'build') return; + if (server == null || config.command == 'build') return {}; return { define: { diff --git a/packages/wxt/src/core/builders/vite/plugins/resolveVirtualModules.ts b/packages/wxt/src/core/builders/vite/plugins/resolveVirtualModules.ts index 231d932df..78de94a0f 100644 --- a/packages/wxt/src/core/builders/vite/plugins/resolveVirtualModules.ts +++ b/packages/wxt/src/core/builders/vite/plugins/resolveVirtualModules.ts @@ -1,5 +1,5 @@ import { Plugin } from 'vite'; -import { ResolvedConfig } from '../../../../types'; +import { ResolvedConfig, WxtDevServer } from '../../../../types'; import { normalizePath } from '../../../utils/paths'; import { VirtualModuleId, @@ -11,10 +11,13 @@ import { resolve } from 'path'; /** * Resolve all the virtual modules to the `node_modules/wxt/dist/virtual` directory. */ -export function resolveVirtualModules(config: ResolvedConfig): Plugin[] { +export function resolveVirtualModules( + config: ResolvedConfig, + server: WxtDevServer | undefined, +): Plugin[] { return virtualModuleNames.map((name) => { const virtualId: `${VirtualModuleId}?` = `virtual:wxt-${name}?`; - const resolvedVirtualId = '\0' + virtualId; + const resolvedVirtualId = 'resolved-' + virtualId; return { name: `wxt:resolve-virtual-${name}`, resolveId(id) { @@ -29,12 +32,26 @@ export function resolveVirtualModules(config: ResolvedConfig): Plugin[] { async load(id) { if (!id.startsWith(resolvedVirtualId)) return; + let wxtBackgroundClientImport: string = ''; + if (server && config.command === 'serve') { + const wxtBackgroundClientUrl = `http://${server.hostname}:${server.port}/@id/wxt/background-client`; + wxtBackgroundClientImport = + config.manifestVersion === 2 + ? `import(/* @vite-ignore */ "${wxtBackgroundClientUrl}")` + : `/* @vite-ignore */\nimport "${wxtBackgroundClientUrl}"`; + } + const inputPath = id.replace(resolvedVirtualId, ''); const template = await fs.readFile( resolve(config.wxtModuleDir, `dist/virtual/${name}.mjs`), 'utf-8', ); - return template.replace(`virtual:user-${name}`, inputPath); + return template + .replace(`virtual:user-${name}`, inputPath) + .replace( + `__WXT_BACKGROUND_CLIENT_IMPORT__`, + wxtBackgroundClientImport, + ); }, }; }); diff --git a/packages/wxt/src/core/utils/manifest.ts b/packages/wxt/src/core/utils/manifest.ts index 8e55dec5a..0c3b0320e 100644 --- a/packages/wxt/src/core/utils/manifest.ts +++ b/packages/wxt/src/core/utils/manifest.ts @@ -116,8 +116,11 @@ export async function generateManifest( addEntrypoints(manifest, entrypoints, buildOutput); - if (wxt.config.command === 'serve') addDevModeCsp(manifest); - if (wxt.config.command === 'serve') addDevModePermissions(manifest); + if (wxt.config.command === 'serve') { + addDevModeCsp(manifest); + addDevModePermissions(manifest); + setDevModeBackgroundToEsm(manifest); + } // TODO: Remove in v1 wxt.config.transformManifest?.(manifest); @@ -509,6 +512,15 @@ function addDevModePermissions(manifest: Manifest.WebExtensionManifest) { if (wxt.config.manifestVersion === 3) addPermission(manifest, 'scripting'); } +/** MV3 service worker must by `type: "module"` to connect to dev server. */ +function setDevModeBackgroundToEsm(manifest: Manifest.WebExtensionManifest) { + if (wxt.config.manifestVersion === 3) { + // Background must be ESM for it to be able to connect to the dev server + (manifest as any).background ??= {}; + (manifest as any).background.type = 'module'; + } +} + /** * Returns the bundle paths to CSS files associated with a list of content scripts, or undefined if * there is no associated CSS. diff --git a/packages/wxt/src/sandbox/dev-server-websocket.ts b/packages/wxt/src/sandbox/dev-server-websocket.ts deleted file mode 100644 index 91961303f..000000000 --- a/packages/wxt/src/sandbox/dev-server-websocket.ts +++ /dev/null @@ -1,85 +0,0 @@ -import { logger } from './utils/logger'; - -interface WebSocketMessage { - type: string; - event: string; - data?: any; -} - -export interface WxtWebSocket extends WebSocket { - addWxtEventListener( - type: 'wxt:reload-extension', - callback: (event: CustomEvent) => void, - options?: AddEventListenerOptions | boolean, - ): void; - addWxtEventListener( - type: 'wxt:reload-content-script', - callback?: (event: CustomEvent) => void, - options?: AddEventListenerOptions | boolean, - ): void; - addWxtEventListener( - type: 'wxt:reload-page', - callback?: (event: CustomEvent) => void, - options?: AddEventListenerOptions | boolean, - ): void; - sendCustom(event: string, payload?: any): void; -} - -let ws: WxtWebSocket | undefined; - -/** - * Connect to the websocket and listen for messages. - * - * @param onMessage Optional callback that is called when a message is recieved and we've verified - * it's structure is what we expect. - */ -export function getDevServerWebSocket(): WxtWebSocket { - if (import.meta.env.COMMAND !== 'serve') - throw Error( - 'Must be running WXT dev command to connect to call getDevServerWebSocket()', - ); - - if (ws == null) { - const serverUrl = `${__DEV_SERVER_PROTOCOL__}//${__DEV_SERVER_HOSTNAME__}:${__DEV_SERVER_PORT__}`; - logger.debug('Connecting to dev server @', serverUrl); - - ws = new WebSocket(serverUrl, 'vite-hmr') as WxtWebSocket; - ws.addWxtEventListener = ws.addEventListener.bind(ws); - ws.sendCustom = (event, payload) => - ws?.send(JSON.stringify({ type: 'custom', event, payload })); - - ws.addEventListener('open', () => { - logger.debug('Connected to dev server'); - }); - ws.addEventListener('close', () => { - logger.debug('Disconnected from dev server'); - }); - ws.addEventListener('error', (event) => { - logger.error('Failed to connect to dev server', event); - }); - - ws.addEventListener('message', (e) => { - try { - const message = JSON.parse(e.data) as WebSocketMessage; - if (message.type === 'custom') { - ws?.dispatchEvent( - new CustomEvent(message.event, { detail: message.data }), - ); - } - } catch (err) { - logger.error('Failed to handle message', err); - } - }); - } - - return ws; -} - -export interface ReloadContentScriptPayload { - registration?: 'manifest' | 'runtime'; - contentScript: { - matches: string[]; - js?: string[]; - css?: string[]; - }; -} diff --git a/packages/wxt/src/virtual/background-entrypoint.ts b/packages/wxt/src/virtual/background-entrypoint.ts index b25bac9af..1989c7e8d 100644 --- a/packages/wxt/src/virtual/background-entrypoint.ts +++ b/packages/wxt/src/virtual/background-entrypoint.ts @@ -1,40 +1,7 @@ import definition from 'virtual:user-background-entrypoint'; import { initPlugins } from 'virtual:wxt-plugins'; -import { getDevServerWebSocket } from '../sandbox/dev-server-websocket'; import { logger } from '../sandbox/utils/logger'; -import { browser } from 'wxt/browser'; -import { keepServiceWorkerAlive } from './utils/keep-service-worker-alive'; -import { reloadContentScript } from './utils/reload-content-scripts'; - -if (import.meta.env.COMMAND === 'serve') { - try { - const ws = getDevServerWebSocket(); - ws.addWxtEventListener('wxt:reload-extension', () => { - browser.runtime.reload(); - }); - ws.addWxtEventListener('wxt:reload-content-script', (event) => { - reloadContentScript(event.detail); - }); - - if (import.meta.env.MANIFEST_VERSION === 3) { - // Tell the server the background script is loaded and ready to go - ws.addEventListener('open', () => - ws.sendCustom('wxt:background-initialized'), - ); - - // Web Socket will disconnect if the service worker is killed - keepServiceWorkerAlive(); - } - } catch (err) { - logger.error('Failed to setup web socket connection with dev server', err); - } - - browser.commands.onCommand.addListener((command) => { - if (command === 'wxt:reload-extension') { - browser.runtime.reload(); - } - }); -} +__WXT_BACKGROUND_CLIENT_IMPORT__; let result; diff --git a/packages/wxt/src/virtual/reload-html.ts b/packages/wxt/src/virtual/reload-html.ts index 12fa49471..a34945635 100644 --- a/packages/wxt/src/virtual/reload-html.ts +++ b/packages/wxt/src/virtual/reload-html.ts @@ -1,14 +1,6 @@ -import { logger } from '../sandbox/utils/logger'; -import { getDevServerWebSocket } from '../sandbox/dev-server-websocket'; - -if (import.meta.env.COMMAND === 'serve') { - try { - const ws = getDevServerWebSocket(); - ws.addWxtEventListener('wxt:reload-page', (event) => { - // "popup.html" === "/popup.html".substring(1) - if (event.detail === location.pathname.substring(1)) location.reload(); - }); - } catch (err) { - logger.error('Failed to setup web socket connection with dev server', err); - } +if (import.meta.hot) { + import.meta.hot.on('wxt:reload-page', (event) => { + // "popup.html" === "/popup.html".substring(1) + if (event.detail === location.pathname.substring(1)) location.reload(); + }); } diff --git a/packages/wxt/src/virtual/utils/keep-service-worker-alive.ts b/packages/wxt/src/virtual/utils/keep-service-worker-alive.ts deleted file mode 100644 index 6a76d31a8..000000000 --- a/packages/wxt/src/virtual/utils/keep-service-worker-alive.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { browser } from 'wxt/browser'; - -/** - * https://developer.chrome.com/blog/longer-esw-lifetimes/ - */ -export function keepServiceWorkerAlive() { - setInterval(async () => { - // Calling an async browser API resets the service worker's timeout - await browser.runtime.getPlatformInfo(); - }, 5e3); -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 177537e6d..cc0ca45df 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -457,7 +457,7 @@ importers: specifier: ^3.13.1 version: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3) vite: - specifier: ^5.0.0 || ^6.0.0 + specifier: ^5.0.0 || <=6.0.8 version: 5.4.11(@types/node@20.17.6)(sass@1.80.7) vite-node: specifier: ^2.1.4 @@ -4184,10 +4184,6 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.4.39: - resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.4.47: resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} engines: {node: ^10 || ^12 || >=14} @@ -6206,7 +6202,7 @@ snapshots: '@rollup/pluginutils@5.1.2(rollup@4.24.0)': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: @@ -6868,14 +6864,14 @@ snapshots: at-least-node@1.0.0: {} - autoprefixer@10.4.19(postcss@8.4.39): + autoprefixer@10.4.19(postcss@8.4.47): dependencies: browserslist: 4.23.1 caniuse-lite: 1.0.30001633 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 axobject-query@4.1.0: {} @@ -7242,9 +7238,9 @@ snapshots: dependencies: type-fest: 1.4.0 - css-declaration-sorter@7.2.0(postcss@8.4.39): + css-declaration-sorter@7.2.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 css-select@5.1.0: dependencies: @@ -7273,49 +7269,49 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-default@7.0.4(postcss@8.4.39): + cssnano-preset-default@7.0.4(postcss@8.4.47): dependencies: browserslist: 4.23.1 - css-declaration-sorter: 7.2.0(postcss@8.4.39) - cssnano-utils: 5.0.0(postcss@8.4.39) - postcss: 8.4.39 - postcss-calc: 10.0.0(postcss@8.4.39) - postcss-colormin: 7.0.1(postcss@8.4.39) - postcss-convert-values: 7.0.2(postcss@8.4.39) - postcss-discard-comments: 7.0.1(postcss@8.4.39) - postcss-discard-duplicates: 7.0.0(postcss@8.4.39) - postcss-discard-empty: 7.0.0(postcss@8.4.39) - postcss-discard-overridden: 7.0.0(postcss@8.4.39) - postcss-merge-longhand: 7.0.2(postcss@8.4.39) - postcss-merge-rules: 7.0.2(postcss@8.4.39) - postcss-minify-font-values: 7.0.0(postcss@8.4.39) - postcss-minify-gradients: 7.0.0(postcss@8.4.39) - postcss-minify-params: 7.0.1(postcss@8.4.39) - postcss-minify-selectors: 7.0.2(postcss@8.4.39) - postcss-normalize-charset: 7.0.0(postcss@8.4.39) - postcss-normalize-display-values: 7.0.0(postcss@8.4.39) - postcss-normalize-positions: 7.0.0(postcss@8.4.39) - postcss-normalize-repeat-style: 7.0.0(postcss@8.4.39) - postcss-normalize-string: 7.0.0(postcss@8.4.39) - postcss-normalize-timing-functions: 7.0.0(postcss@8.4.39) - postcss-normalize-unicode: 7.0.1(postcss@8.4.39) - postcss-normalize-url: 7.0.0(postcss@8.4.39) - postcss-normalize-whitespace: 7.0.0(postcss@8.4.39) - postcss-ordered-values: 7.0.1(postcss@8.4.39) - postcss-reduce-initial: 7.0.1(postcss@8.4.39) - postcss-reduce-transforms: 7.0.0(postcss@8.4.39) - postcss-svgo: 7.0.1(postcss@8.4.39) - postcss-unique-selectors: 7.0.1(postcss@8.4.39) - - cssnano-utils@5.0.0(postcss@8.4.39): - dependencies: - postcss: 8.4.39 - - cssnano@7.0.4(postcss@8.4.39): - dependencies: - cssnano-preset-default: 7.0.4(postcss@8.4.39) + css-declaration-sorter: 7.2.0(postcss@8.4.47) + cssnano-utils: 5.0.0(postcss@8.4.47) + postcss: 8.4.47 + postcss-calc: 10.0.0(postcss@8.4.47) + postcss-colormin: 7.0.1(postcss@8.4.47) + postcss-convert-values: 7.0.2(postcss@8.4.47) + postcss-discard-comments: 7.0.1(postcss@8.4.47) + postcss-discard-duplicates: 7.0.0(postcss@8.4.47) + postcss-discard-empty: 7.0.0(postcss@8.4.47) + postcss-discard-overridden: 7.0.0(postcss@8.4.47) + postcss-merge-longhand: 7.0.2(postcss@8.4.47) + postcss-merge-rules: 7.0.2(postcss@8.4.47) + postcss-minify-font-values: 7.0.0(postcss@8.4.47) + postcss-minify-gradients: 7.0.0(postcss@8.4.47) + postcss-minify-params: 7.0.1(postcss@8.4.47) + postcss-minify-selectors: 7.0.2(postcss@8.4.47) + postcss-normalize-charset: 7.0.0(postcss@8.4.47) + postcss-normalize-display-values: 7.0.0(postcss@8.4.47) + postcss-normalize-positions: 7.0.0(postcss@8.4.47) + postcss-normalize-repeat-style: 7.0.0(postcss@8.4.47) + postcss-normalize-string: 7.0.0(postcss@8.4.47) + postcss-normalize-timing-functions: 7.0.0(postcss@8.4.47) + postcss-normalize-unicode: 7.0.1(postcss@8.4.47) + postcss-normalize-url: 7.0.0(postcss@8.4.47) + postcss-normalize-whitespace: 7.0.0(postcss@8.4.47) + postcss-ordered-values: 7.0.1(postcss@8.4.47) + postcss-reduce-initial: 7.0.1(postcss@8.4.47) + postcss-reduce-transforms: 7.0.0(postcss@8.4.47) + postcss-svgo: 7.0.1(postcss@8.4.47) + postcss-unique-selectors: 7.0.1(postcss@8.4.47) + + cssnano-utils@5.0.0(postcss@8.4.47): + dependencies: + postcss: 8.4.47 + + cssnano@7.0.4(postcss@8.4.47): + dependencies: + cssnano-preset-default: 7.0.4(postcss@8.4.47) lilconfig: 3.1.2 - postcss: 8.4.39 + postcss: 8.4.47 csso@5.0.5: dependencies: @@ -7977,7 +7973,7 @@ snapshots: is-reference@1.2.1: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 is-reference@3.0.2: dependencies: @@ -8360,9 +8356,9 @@ snapshots: mkdist@1.5.4(sass@1.80.7)(typescript@5.6.3): dependencies: - autoprefixer: 10.4.19(postcss@8.4.39) + autoprefixer: 10.4.19(postcss@8.4.47) citty: 0.1.6 - cssnano: 7.0.4(postcss@8.4.39) + cssnano: 7.0.4(postcss@8.4.47) defu: 6.1.4 esbuild: 0.23.0 fast-glob: 3.3.2 @@ -8370,8 +8366,8 @@ snapshots: mlly: 1.7.1 pathe: 1.1.2 pkg-types: 1.1.3 - postcss: 8.4.39 - postcss-nested: 6.0.1(postcss@8.4.39) + postcss: 8.4.47 + postcss-nested: 6.0.1(postcss@8.4.47) semver: 7.6.2 optionalDependencies: sass: 1.80.7 @@ -8666,147 +8662,147 @@ snapshots: mlly: 1.7.1 pathe: 1.1.2 - postcss-calc@10.0.0(postcss@8.4.39): + postcss-calc@10.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.1(postcss@8.4.39): + postcss-colormin@7.0.1(postcss@8.4.47): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.2(postcss@8.4.39): + postcss-convert-values@7.0.2(postcss@8.4.47): dependencies: browserslist: 4.23.1 - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-discard-comments@7.0.1(postcss@8.4.39): + postcss-discard-comments@7.0.1(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-selector-parser: 6.1.0 - postcss-discard-duplicates@7.0.0(postcss@8.4.39): + postcss-discard-duplicates@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 - postcss-discard-empty@7.0.0(postcss@8.4.39): + postcss-discard-empty@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 - postcss-discard-overridden@7.0.0(postcss@8.4.39): + postcss-discard-overridden@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 - postcss-merge-longhand@7.0.2(postcss@8.4.39): + postcss-merge-longhand@7.0.2(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - stylehacks: 7.0.2(postcss@8.4.39) + stylehacks: 7.0.2(postcss@8.4.47) - postcss-merge-rules@7.0.2(postcss@8.4.39): + postcss-merge-rules@7.0.2(postcss@8.4.47): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 - cssnano-utils: 5.0.0(postcss@8.4.39) - postcss: 8.4.39 + cssnano-utils: 5.0.0(postcss@8.4.47) + postcss: 8.4.47 postcss-selector-parser: 6.1.0 - postcss-minify-font-values@7.0.0(postcss@8.4.39): + postcss-minify-font-values@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.0(postcss@8.4.39): + postcss-minify-gradients@7.0.0(postcss@8.4.47): dependencies: colord: 2.9.3 - cssnano-utils: 5.0.0(postcss@8.4.39) - postcss: 8.4.39 + cssnano-utils: 5.0.0(postcss@8.4.47) + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.1(postcss@8.4.39): + postcss-minify-params@7.0.1(postcss@8.4.47): dependencies: browserslist: 4.23.1 - cssnano-utils: 5.0.0(postcss@8.4.39) - postcss: 8.4.39 + cssnano-utils: 5.0.0(postcss@8.4.47) + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-minify-selectors@7.0.2(postcss@8.4.39): + postcss-minify-selectors@7.0.2(postcss@8.4.47): dependencies: cssesc: 3.0.0 - postcss: 8.4.39 + postcss: 8.4.47 postcss-selector-parser: 6.1.0 - postcss-nested@6.0.1(postcss@8.4.39): + postcss-nested@6.0.1(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-selector-parser: 6.1.0 - postcss-normalize-charset@7.0.0(postcss@8.4.39): + postcss-normalize-charset@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 - postcss-normalize-display-values@7.0.0(postcss@8.4.39): + postcss-normalize-display-values@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.0(postcss@8.4.39): + postcss-normalize-positions@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.0(postcss@8.4.39): + postcss-normalize-repeat-style@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.0(postcss@8.4.39): + postcss-normalize-string@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.0(postcss@8.4.39): + postcss-normalize-timing-functions@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.1(postcss@8.4.39): + postcss-normalize-unicode@7.0.1(postcss@8.4.47): dependencies: browserslist: 4.23.1 - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.0(postcss@8.4.39): + postcss-normalize-url@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.0(postcss@8.4.39): + postcss-normalize-whitespace@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-ordered-values@7.0.1(postcss@8.4.39): + postcss-ordered-values@7.0.1(postcss@8.4.47): dependencies: - cssnano-utils: 5.0.0(postcss@8.4.39) - postcss: 8.4.39 + cssnano-utils: 5.0.0(postcss@8.4.47) + postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-reduce-initial@7.0.1(postcss@8.4.39): + postcss-reduce-initial@7.0.1(postcss@8.4.47): dependencies: browserslist: 4.23.1 caniuse-api: 3.0.0 - postcss: 8.4.39 + postcss: 8.4.47 - postcss-reduce-transforms@7.0.0(postcss@8.4.39): + postcss-reduce-transforms@7.0.0(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 postcss-selector-parser@6.1.0: @@ -8814,25 +8810,19 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@7.0.1(postcss@8.4.39): + postcss-svgo@7.0.1(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-value-parser: 4.2.0 svgo: 3.3.2 - postcss-unique-selectors@7.0.1(postcss@8.4.39): + postcss-unique-selectors@7.0.1(postcss@8.4.47): dependencies: - postcss: 8.4.39 + postcss: 8.4.47 postcss-selector-parser: 6.1.0 postcss-value-parser@4.2.0: {} - postcss@8.4.39: - dependencies: - nanoid: 3.3.7 - picocolors: 1.1.1 - source-map-js: 1.2.0 - postcss@8.4.47: dependencies: nanoid: 3.3.7 @@ -9292,10 +9282,10 @@ snapshots: dependencies: js-tokens: 9.0.0 - stylehacks@7.0.2(postcss@8.4.39): + stylehacks@7.0.2(postcss@8.4.47): dependencies: browserslist: 4.24.0 - postcss: 8.4.39 + postcss: 8.4.47 postcss-selector-parser: 6.1.0 superjson@2.2.1: