mbler 0.2.8-rc.7 → 0.2.8-rc.9
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/build.esm.mjs +15 -7
- package/dist/build.esm.mjs.map +1 -1
- package/dist/build.js +15 -7
- package/dist/build.js.map +1 -1
- package/dist/index.esm.mjs +39 -11
- package/dist/index.esm.mjs.map +1 -1
- package/dist/index.js +39 -11
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/build.esm.mjs
CHANGED
|
@@ -76,9 +76,9 @@ var init_types = __esmMin((() => {
|
|
|
76
76
|
minify: "oxc",
|
|
77
77
|
script: { main: "" },
|
|
78
78
|
outdir: {
|
|
79
|
-
behavior: "",
|
|
80
|
-
resources: "",
|
|
81
|
-
dist: ""
|
|
79
|
+
behavior: "dist/dep",
|
|
80
|
+
resources: "dist/res",
|
|
81
|
+
dist: "dist-pkg"
|
|
82
82
|
},
|
|
83
83
|
build: {
|
|
84
84
|
rollupPlugins: [],
|
|
@@ -97,11 +97,11 @@ var init_types = __esmMin((() => {
|
|
|
97
97
|
var version_default;
|
|
98
98
|
var init_version = __esmMin((() => {
|
|
99
99
|
version_default = {
|
|
100
|
-
commit: `commit
|
|
100
|
+
commit: `commit 81b5f591f4b03353f20232e5599b376f44ed595c
|
|
101
101
|
Author: ruanhor <3915264929@qq.com>
|
|
102
|
-
Date: Sun Jun 28 11:
|
|
102
|
+
Date: Sun Jun 28 11:41:24 2026 +0800
|
|
103
103
|
|
|
104
|
-
chore: update
|
|
104
|
+
chore: update pnpm-lock
|
|
105
105
|
`,
|
|
106
106
|
version: "0.2.8-rc.7"
|
|
107
107
|
};
|
|
@@ -659,7 +659,15 @@ async function ReadProjectMblerConfig(project) {
|
|
|
659
659
|
for (const key in file) if (!(key in templateMblerConfig)) throw new Error(`[read config]: read config from '${project}' error: Unexpected '${key}'`);
|
|
660
660
|
const config = {
|
|
661
661
|
...templateMblerConfig,
|
|
662
|
-
...file
|
|
662
|
+
...file,
|
|
663
|
+
outdir: {
|
|
664
|
+
...templateMblerConfig.outdir,
|
|
665
|
+
...file.outdir
|
|
666
|
+
},
|
|
667
|
+
build: {
|
|
668
|
+
...templateMblerConfig.build,
|
|
669
|
+
...file.build
|
|
670
|
+
}
|
|
663
671
|
};
|
|
664
672
|
try {
|
|
665
673
|
const pkgRaw = await fs$3.readFile(path$1.join(project, "package.json"), "utf-8");
|