@danielx/civet 0.6.33 → 0.6.34
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/dist/esbuild-plugin.js +4 -0
- package/package.json +1 -1
package/dist/esbuild-plugin.js
CHANGED
|
@@ -127,6 +127,10 @@ function civet(options = {}) {
|
|
|
127
127
|
}
|
|
128
128
|
var defaultPlugin = civet();
|
|
129
129
|
civet.setup = defaultPlugin.setup;
|
|
130
|
+
if (typeof module !== "undefined") {
|
|
131
|
+
module.exports = civet;
|
|
132
|
+
module.exports.default = civet;
|
|
133
|
+
}
|
|
130
134
|
var esbuild_plugin_default = civet;
|
|
131
135
|
// Annotate the CommonJS export names for ESM import in node:
|
|
132
136
|
0 && (module.exports = {});
|