@danielx/civet 0.10.5 → 0.10.6
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/CHANGELOG.md +17 -2
- package/dist/babel-plugin.js +1 -1
- package/dist/babel-plugin.mjs +1 -1
- package/dist/browser.js +154 -114
- package/dist/civet +2 -1
- package/dist/config.js +1 -1
- package/dist/config.mjs +1 -1
- package/dist/esbuild-plugin.js +1 -1
- package/dist/esm.mjs +1 -1
- package/dist/main.js +195 -155
- package/dist/main.mjs +194 -154
- package/dist/node-worker.mjs +1 -1
- package/dist/unplugin/astro.js +1 -1
- package/dist/unplugin/astro.mjs +1 -1
- package/dist/unplugin/esbuild.js +1 -1
- package/dist/unplugin/esbuild.mjs +1 -1
- package/dist/unplugin/farm.js +1 -1
- package/dist/unplugin/farm.mjs +1 -1
- package/dist/unplugin/rolldown.js +1 -1
- package/dist/unplugin/rolldown.mjs +1 -1
- package/dist/unplugin/rollup.js +1 -1
- package/dist/unplugin/rollup.mjs +1 -1
- package/dist/unplugin/rspack.js +1 -1
- package/dist/unplugin/rspack.mjs +1 -1
- package/dist/unplugin/unplugin.js +4 -4
- package/dist/unplugin/unplugin.mjs +4 -4
- package/dist/unplugin/vite.js +1 -1
- package/dist/unplugin/vite.mjs +1 -1
- package/dist/unplugin/webpack.js +1 -1
- package/dist/unplugin/webpack.mjs +1 -1
- package/package.json +1 -1
package/dist/civet
CHANGED
|
@@ -29,7 +29,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
29
29
|
));
|
|
30
30
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
31
31
|
|
|
32
|
-
// unplugin-civet
|
|
32
|
+
// unplugin-civet:C:\Users\edemaine\Projects\Civet\source\cli.civet.jsx
|
|
33
33
|
var cli_civet_exports = {};
|
|
34
34
|
__export(cli_civet_exports, {
|
|
35
35
|
cli: () => cli,
|
|
@@ -368,6 +368,7 @@ async function repl(args, options) {
|
|
|
368
368
|
return;
|
|
369
369
|
})(),
|
|
370
370
|
eval: async function(input, context, filename, callback) {
|
|
371
|
+
input = input.replace(/\r/g, "\n");
|
|
371
372
|
if (input === "\n") {
|
|
372
373
|
return callback(null, void 0);
|
|
373
374
|
} else if (input in ["quit\n", "exit\n", "quit()\n", "exit()\n"]) {
|
package/dist/config.js
CHANGED
|
@@ -26,7 +26,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
));
|
|
27
27
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
28
|
|
|
29
|
-
// unplugin-civet
|
|
29
|
+
// unplugin-civet:C:\Users\edemaine\Projects\Civet\source\config.civet.jsx
|
|
30
30
|
var config_civet_exports = {};
|
|
31
31
|
__export(config_civet_exports, {
|
|
32
32
|
default: () => config_civet_default,
|
package/dist/config.mjs
CHANGED
package/dist/esbuild-plugin.js
CHANGED
|
@@ -26,7 +26,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
));
|
|
27
27
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
28
|
|
|
29
|
-
// unplugin-civet
|
|
29
|
+
// unplugin-civet:C:\Users\edemaine\Projects\Civet\source\esbuild-plugin.civet.jsx
|
|
30
30
|
var esbuild_plugin_civet_exports = {};
|
|
31
31
|
__export(esbuild_plugin_civet_exports, {
|
|
32
32
|
default: () => esbuild_plugin_civet_default
|
package/dist/esm.mjs
CHANGED