@danielx/civet 0.6.27 → 0.6.28
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/README.md +4 -0
- package/dist/browser.js +552 -505
- package/dist/civet +0 -0
- package/dist/main.js +552 -505
- package/dist/main.mjs +552 -505
- package/dist/unplugin.d.mts +10 -10
- package/dist/unplugin.d.ts +10 -10
- package/package.json +2 -2
package/dist/unplugin.d.mts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import * as unplugin from 'unplugin';
|
|
2
2
|
import { TransformResult } from 'unplugin';
|
|
3
3
|
|
|
4
|
-
declare type PluginOptions = {
|
|
5
|
-
outputExtension?: string;
|
|
6
|
-
transformOutput?: (code: string, id: string) => TransformResult | Promise<TransformResult>;
|
|
7
|
-
} & ({
|
|
8
|
-
dts?: false;
|
|
9
|
-
js?: false | true;
|
|
10
|
-
} | {
|
|
11
|
-
dts?: true;
|
|
12
|
-
js?: false;
|
|
13
|
-
});
|
|
4
|
+
declare type PluginOptions = {
|
|
5
|
+
outputExtension?: string;
|
|
6
|
+
transformOutput?: (code: string, id: string) => TransformResult | Promise<TransformResult>;
|
|
7
|
+
} & ({
|
|
8
|
+
dts?: false;
|
|
9
|
+
js?: false | true;
|
|
10
|
+
} | {
|
|
11
|
+
dts?: true;
|
|
12
|
+
js?: false;
|
|
13
|
+
});
|
|
14
14
|
declare const civetUnplugin: unplugin.UnpluginInstance<PluginOptions | undefined, boolean>;
|
|
15
15
|
|
|
16
16
|
export { PluginOptions, civetUnplugin as default };
|
package/dist/unplugin.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import * as unplugin from 'unplugin';
|
|
2
2
|
import { TransformResult } from 'unplugin';
|
|
3
3
|
|
|
4
|
-
declare type PluginOptions = {
|
|
5
|
-
outputExtension?: string;
|
|
6
|
-
transformOutput?: (code: string, id: string) => TransformResult | Promise<TransformResult>;
|
|
7
|
-
} & ({
|
|
8
|
-
dts?: false;
|
|
9
|
-
js?: false | true;
|
|
10
|
-
} | {
|
|
11
|
-
dts?: true;
|
|
12
|
-
js?: false;
|
|
13
|
-
});
|
|
4
|
+
declare type PluginOptions = {
|
|
5
|
+
outputExtension?: string;
|
|
6
|
+
transformOutput?: (code: string, id: string) => TransformResult | Promise<TransformResult>;
|
|
7
|
+
} & ({
|
|
8
|
+
dts?: false;
|
|
9
|
+
js?: false | true;
|
|
10
|
+
} | {
|
|
11
|
+
dts?: true;
|
|
12
|
+
js?: false;
|
|
13
|
+
});
|
|
14
14
|
declare const civetUnplugin: unplugin.UnpluginInstance<PluginOptions | undefined, boolean>;
|
|
15
15
|
|
|
16
16
|
export { PluginOptions, civetUnplugin as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielx/civet",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.28",
|
|
4
4
|
"description": "CoffeeScript style syntax for TypeScript",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"module": "dist/main.mjs",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"docs:build": "yarn build && vitepress build civet.dev",
|
|
56
56
|
"docs:preview": "yarn build && vitepress preview civet.dev",
|
|
57
57
|
"prepublishOnly": "yarn build && yarn test",
|
|
58
|
-
"test": "
|
|
58
|
+
"test": "bash ./build/test.sh"
|
|
59
59
|
},
|
|
60
60
|
"author": "Daniel X. Moore",
|
|
61
61
|
"license": "MIT",
|