@fangzhongya/vue-archive 0.0.2-37 → 0.0.2-38
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/node/index.cjs +4 -5
- package/dist/node/index.js +4 -5
- package/package.json +1 -1
package/dist/node/index.cjs
CHANGED
|
@@ -66351,7 +66351,7 @@ function h3(div, sx, v) {
|
|
|
66351
66351
|
}
|
|
66352
66352
|
var setHtml = h3;
|
|
66353
66353
|
var configObj;
|
|
66354
|
-
var
|
|
66354
|
+
var comps = [];
|
|
66355
66355
|
async function nodeInit(c, callback) {
|
|
66356
66356
|
configObj = userConfig(c);
|
|
66357
66357
|
configObj._callback_ = callback;
|
|
@@ -66359,10 +66359,9 @@ async function nodeInit(c, callback) {
|
|
|
66359
66359
|
setHtml = c.setHtml;
|
|
66360
66360
|
}
|
|
66361
66361
|
Fang = runDev(_optionalChain([c, 'optionalAccess', _64 => _64.create]));
|
|
66362
|
-
|
|
66362
|
+
comps = getCompoNameObj();
|
|
66363
66363
|
for (let index = 0; index < comps.length; index++) {
|
|
66364
66364
|
const element = comps[index];
|
|
66365
|
-
mls.push(element);
|
|
66366
66365
|
await getCompoData(element);
|
|
66367
66366
|
}
|
|
66368
66367
|
}
|
|
@@ -66397,9 +66396,9 @@ function setMd(obj, arr) {
|
|
|
66397
66396
|
"/" + obj.value + "/index.md"
|
|
66398
66397
|
);
|
|
66399
66398
|
Fang.fileOpen(sc, arr.join("\n\n"));
|
|
66400
|
-
if (
|
|
66399
|
+
if (comps.length == lss) {
|
|
66401
66400
|
if (configObj._callback_) {
|
|
66402
|
-
configObj._callback_(
|
|
66401
|
+
configObj._callback_(comps);
|
|
66403
66402
|
}
|
|
66404
66403
|
}
|
|
66405
66404
|
}
|
package/dist/node/index.js
CHANGED
|
@@ -66351,7 +66351,7 @@ function h3(div, sx, v) {
|
|
|
66351
66351
|
}
|
|
66352
66352
|
var setHtml = h3;
|
|
66353
66353
|
var configObj;
|
|
66354
|
-
var
|
|
66354
|
+
var comps = [];
|
|
66355
66355
|
async function nodeInit(c, callback) {
|
|
66356
66356
|
configObj = userConfig(c);
|
|
66357
66357
|
configObj._callback_ = callback;
|
|
@@ -66359,10 +66359,9 @@ async function nodeInit(c, callback) {
|
|
|
66359
66359
|
setHtml = c.setHtml;
|
|
66360
66360
|
}
|
|
66361
66361
|
Fang = runDev(c?.create);
|
|
66362
|
-
|
|
66362
|
+
comps = getCompoNameObj();
|
|
66363
66363
|
for (let index = 0; index < comps.length; index++) {
|
|
66364
66364
|
const element = comps[index];
|
|
66365
|
-
mls.push(element);
|
|
66366
66365
|
await getCompoData(element);
|
|
66367
66366
|
}
|
|
66368
66367
|
}
|
|
@@ -66397,9 +66396,9 @@ function setMd(obj, arr) {
|
|
|
66397
66396
|
"/" + obj.value + "/index.md"
|
|
66398
66397
|
);
|
|
66399
66398
|
Fang.fileOpen(sc, arr.join("\n\n"));
|
|
66400
|
-
if (
|
|
66399
|
+
if (comps.length == lss) {
|
|
66401
66400
|
if (configObj._callback_) {
|
|
66402
|
-
configObj._callback_(
|
|
66401
|
+
configObj._callback_(comps);
|
|
66403
66402
|
}
|
|
66404
66403
|
}
|
|
66405
66404
|
}
|