@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.
@@ -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 = {});
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@danielx/civet",
3
3
  "type": "commonjs",
4
- "version": "0.6.33",
4
+ "version": "0.6.34",
5
5
  "description": "CoffeeScript style syntax for TypeScript",
6
6
  "main": "dist/main.js",
7
7
  "module": "dist/main.mjs",