vaderjs 2.3.10 → 2.3.11
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/main.js +1 -2
- package/package.json +1 -1
package/main.js
CHANGED
|
@@ -102,8 +102,7 @@ export function defineConfig(config) {
|
|
|
102
102
|
return config;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
async function runPluginHook(hookName) {
|
|
106
|
-
console.log(config)
|
|
105
|
+
async function runPluginHook(hookName) {
|
|
107
106
|
if (!config.plugins) return;
|
|
108
107
|
for (const plugin of config.plugins) {
|
|
109
108
|
if (typeof plugin[hookName] === "function") {
|