@vivliostyle/cli 9.8.2 → 9.8.4
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/{chunk-H3YDIY6Y.js → chunk-HYY2WKJZ.js} +2 -2
- package/dist/{chunk-6VPFP3WW.js → chunk-LI2REENX.js} +2 -2
- package/dist/{chunk-WXPIB2DF.js → chunk-PPI5DA75.js} +11 -6
- package/dist/chunk-PPI5DA75.js.map +1 -0
- package/dist/{chunk-4WY24DF4.js → chunk-QOPM72CS.js} +21 -3
- package/dist/chunk-QOPM72CS.js.map +1 -0
- package/dist/commands/build.js +2 -2
- package/dist/commands/preview.js +2 -2
- package/dist/index.js +4 -4
- package/dist/vite-adapter.js +2 -2
- package/package.json +2 -2
- package/dist/chunk-4WY24DF4.js.map +0 -1
- package/dist/chunk-WXPIB2DF.js.map +0 -1
- /package/dist/{chunk-H3YDIY6Y.js.map → chunk-HYY2WKJZ.js.map} +0 -0
- /package/dist/{chunk-6VPFP3WW.js.map → chunk-LI2REENX.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
mergeInlineConfig,
|
|
10
10
|
resolveTaskConfig,
|
|
11
11
|
warnDeprecatedConfig
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-PPI5DA75.js";
|
|
13
13
|
import {
|
|
14
14
|
Logger,
|
|
15
15
|
isUnicodeSupported,
|
|
@@ -85,4 +85,4 @@ ${blueBright("\u2559\u2500")} ${dim(`Preview URL: ${terminalLink(url, url, { fal
|
|
|
85
85
|
export {
|
|
86
86
|
preview
|
|
87
87
|
};
|
|
88
|
-
//# sourceMappingURL=chunk-
|
|
88
|
+
//# sourceMappingURL=chunk-HYY2WKJZ.js.map
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
vsStaticServePlugin,
|
|
8
8
|
vsViewerPlugin,
|
|
9
9
|
warnDeprecatedConfig
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-PPI5DA75.js";
|
|
11
11
|
import {
|
|
12
12
|
Logger,
|
|
13
13
|
setupConfigFromFlags
|
|
@@ -54,4 +54,4 @@ async function createVitePlugin(inlineConfig = {}) {
|
|
|
54
54
|
export {
|
|
55
55
|
createVitePlugin
|
|
56
56
|
};
|
|
57
|
-
//# sourceMappingURL=chunk-
|
|
57
|
+
//# sourceMappingURL=chunk-LI2REENX.js.map
|
|
@@ -1255,13 +1255,15 @@ function getWebPubResourceMatcher({
|
|
|
1255
1255
|
themesDir,
|
|
1256
1256
|
entries,
|
|
1257
1257
|
cwd: cwd2,
|
|
1258
|
-
manifestPath
|
|
1258
|
+
manifestPath,
|
|
1259
|
+
copyAsset: { fileExtensions }
|
|
1259
1260
|
}) {
|
|
1260
1261
|
return new GlobMatcher([
|
|
1261
1262
|
{
|
|
1262
1263
|
patterns: [
|
|
1263
1264
|
`**/${upath3.relative(cwd2, manifestPath)}`,
|
|
1264
|
-
"**/*.{html,htm,xhtml,xht
|
|
1265
|
+
"**/*.{html,htm,xhtml,xht}",
|
|
1266
|
+
`**/*.{${fileExtensions.join(",")}}`
|
|
1265
1267
|
],
|
|
1266
1268
|
ignore: [
|
|
1267
1269
|
...getIgnoreAssetPatterns({
|
|
@@ -2798,7 +2800,8 @@ async function copyWebPublicationAssets({
|
|
|
2798
2800
|
outputs,
|
|
2799
2801
|
themesDir,
|
|
2800
2802
|
entries,
|
|
2801
|
-
manifestPath
|
|
2803
|
+
manifestPath,
|
|
2804
|
+
copyAsset
|
|
2802
2805
|
});
|
|
2803
2806
|
const allFiles = /* @__PURE__ */ new Set([
|
|
2804
2807
|
...await assetMatcher.glob(),
|
|
@@ -3343,7 +3346,8 @@ function getWorkspaceMatcher({
|
|
|
3343
3346
|
viewerInput,
|
|
3344
3347
|
themeIndexes,
|
|
3345
3348
|
entries,
|
|
3346
|
-
outputs
|
|
3349
|
+
outputs,
|
|
3350
|
+
copyAsset
|
|
3347
3351
|
}) {
|
|
3348
3352
|
if (viewerInput.type === "webpub") {
|
|
3349
3353
|
return getWebPubResourceMatcher({
|
|
@@ -3351,7 +3355,8 @@ function getWorkspaceMatcher({
|
|
|
3351
3355
|
themesDir,
|
|
3352
3356
|
entries,
|
|
3353
3357
|
cwd: workspaceDir,
|
|
3354
|
-
manifestPath: viewerInput.manifestPath
|
|
3358
|
+
manifestPath: viewerInput.manifestPath,
|
|
3359
|
+
copyAsset
|
|
3355
3360
|
});
|
|
3356
3361
|
}
|
|
3357
3362
|
let entryFiles = [];
|
|
@@ -3980,4 +3985,4 @@ export {
|
|
|
3980
3985
|
getViewerFullUrl,
|
|
3981
3986
|
createViteServer
|
|
3982
3987
|
};
|
|
3983
|
-
//# sourceMappingURL=chunk-
|
|
3988
|
+
//# sourceMappingURL=chunk-PPI5DA75.js.map
|