From 2cfd08e5003577b473fbc1110242a2ddc8dab8c2 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Tue, 7 Jun 2022 23:47:38 -0500 Subject: [PATCH] Remove debug logging --- scripts/build-plugins/rollup-plugin-build-themes.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/build-plugins/rollup-plugin-build-themes.js b/scripts/build-plugins/rollup-plugin-build-themes.js index 429c8ccb..edb36ec4 100644 --- a/scripts/build-plugins/rollup-plugin-build-themes.js +++ b/scripts/build-plugins/rollup-plugin-build-themes.js @@ -103,7 +103,6 @@ module.exports = function buildThemes(options) { if (isDevelopment) { return; } const { themeConfig } = options; for (const [name, location] of Object.entries(themeConfig.themes)) { - console.log('build', location); manifest = require(`${location}/manifest.json`); variants = manifest.values.variants; for (const [variant, details] of Object.entries(variants)) { @@ -143,7 +142,6 @@ module.exports = function buildThemes(options) { async load(id) { if (isDevelopment) { - //console.log('load', id); /** * To load the theme during dev, we need to take a different approach because emitFile is not supported in dev. * We solve this by resolving virtual file "@theme/name/variant" into the necessary css import.