@danielx/civet 0.6.76 → 0.6.78
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/browser.js +570 -446
- package/dist/civet +1 -1
- package/dist/esbuild.js +1 -0
- package/dist/main.js +570 -446
- package/dist/main.mjs +570 -446
- package/dist/rollup.js +1 -0
- package/dist/unplugin-shared.mjs +1 -0
- package/dist/unplugin.js +1 -0
- package/dist/vite.js +1 -0
- package/dist/webpack.js +1 -0
- package/package.json +4 -1
package/dist/civet
CHANGED
|
@@ -347,7 +347,7 @@ async function cli() {
|
|
|
347
347
|
};
|
|
348
348
|
(unpluginOptions.parseOptions ??= {}).rewriteCivetImports = ".civet.tsx";
|
|
349
349
|
unplugin = (0, import_unplugin.rawPlugin)(unpluginOptions, { framework: "civet-cli" });
|
|
350
|
-
unplugin.buildStart();
|
|
350
|
+
await unplugin.buildStart();
|
|
351
351
|
}
|
|
352
352
|
if (options.run) {
|
|
353
353
|
options.js = true;
|
package/dist/esbuild.js
CHANGED
|
@@ -128,6 +128,7 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
128
128
|
...configContents.options,
|
|
129
129
|
target: ts.ScriptTarget.ESNext
|
|
130
130
|
};
|
|
131
|
+
compilerOptions.jsx ?? (compilerOptions.jsx = "preserve");
|
|
131
132
|
compilerOptionsWithSourceMap = {
|
|
132
133
|
...compilerOptions,
|
|
133
134
|
sourceMap: true
|