From af931b4ded5c69698ee900167081bc2903affc28 Mon Sep 17 00:00:00 2001 From: Grigorii Zander Date: Fri, 19 Nov 2021 20:30:28 +0100 Subject: [PATCH] added RuntimeModule.STAGE_BASIC for DojoAMDRuntimeModule to comply with webpack runtime dependencies --- lib/DojoAMDRuntimeModule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DojoAMDRuntimeModule.js b/lib/DojoAMDRuntimeModule.js index 0f1a829..31b5f45 100644 --- a/lib/DojoAMDRuntimeModule.js +++ b/lib/DojoAMDRuntimeModule.js @@ -7,7 +7,7 @@ const stringify = require("node-stringify"); class DojoAMDRuntimeModule extends RuntimeModule { constructor(chunk, set__, compiler) { - super(pluginName); + super(pluginName, RuntimeModule.STAGE_BASIC); this.chunk = chunk; this.pluginProps = getPluginProps(compiler); this.options = this.pluginProps.options;