@danielx/civet 0.7.31 → 0.7.33
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 +13 -0
- package/dist/browser.js +337 -290
- package/dist/config.js +6 -0
- package/dist/config.mjs +6 -0
- package/dist/main.js +337 -290
- package/dist/main.mjs +337 -290
- package/dist/types.d.ts +3 -3
- package/dist/unplugin/rollup.d.ts +1 -1
- package/package.json +19 -19
package/dist/config.js
CHANGED
|
@@ -30,6 +30,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// source/config.civet
|
|
31
31
|
var config_exports = {};
|
|
32
32
|
__export(config_exports, {
|
|
33
|
+
default: () => config_default,
|
|
33
34
|
findConfig: () => findConfig,
|
|
34
35
|
findInDir: () => findInDir,
|
|
35
36
|
loadConfig: () => loadConfig
|
|
@@ -151,6 +152,11 @@ async function loadConfig(pathname) {
|
|
|
151
152
|
delete data?.parseOptions?.comptime;
|
|
152
153
|
return data;
|
|
153
154
|
}
|
|
155
|
+
var config_default = {
|
|
156
|
+
findConfig,
|
|
157
|
+
findInDir,
|
|
158
|
+
loadConfig
|
|
159
|
+
};
|
|
154
160
|
// Annotate the CommonJS export names for ESM import in node:
|
|
155
161
|
0 && (module.exports = {
|
|
156
162
|
findConfig,
|
package/dist/config.mjs
CHANGED
|
@@ -115,7 +115,13 @@ async function loadConfig(pathname) {
|
|
|
115
115
|
delete data?.parseOptions?.comptime;
|
|
116
116
|
return data;
|
|
117
117
|
}
|
|
118
|
+
var config_default = {
|
|
119
|
+
findConfig,
|
|
120
|
+
findInDir,
|
|
121
|
+
loadConfig
|
|
122
|
+
};
|
|
118
123
|
export {
|
|
124
|
+
config_default as default,
|
|
119
125
|
findConfig,
|
|
120
126
|
findInDir,
|
|
121
127
|
loadConfig
|