@danielx/civet 0.5.93 → 0.5.94

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/types.d.ts CHANGED
@@ -52,6 +52,13 @@ declare module "@danielx/civet" {
52
52
  declare module "@danielx/civet/esbuild-plugin" {
53
53
  import { Plugin } from "esbuild"
54
54
 
55
- const plugin: Plugin
55
+ interface Options {
56
+ filter?: RegExp
57
+ inlineMap?: boolean
58
+ js?: boolean
59
+ next?: unknown
60
+ }
61
+
62
+ const plugin: ((options: Options) => Plugin) & Plugin
56
63
  export default plugin
57
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielx/civet",
3
- "version": "0.5.93",
3
+ "version": "0.5.94",
4
4
  "description": "CoffeeScript style syntax for TypeScript",
5
5
  "main": "dist/main.js",
6
6
  "module": "dist/main.mjs",