@seayoo-web/scripts 3.0.6 → 3.0.7
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/index.js +1 -0
- package/package.json +1 -1
- package/types/src/vite.page.d.ts +4 -0
package/dist/index.js
CHANGED
|
@@ -280,6 +280,7 @@ function definePageBuildConfig(option) {
|
|
|
280
280
|
key: envs.deployKey,
|
|
281
281
|
debug: envs.deployDebug,
|
|
282
282
|
preview: option?.finder?.preview ?? true,
|
|
283
|
+
ignoreCache: option?.finder?.ignoreServerListCache,
|
|
283
284
|
commitLogs: isProductMode && gitInfo.logs.length > 0 ? "\n" + gitInfo.logs.join("\n") : void 0,
|
|
284
285
|
onBeforeDeploy: option?.finder?.beforeDeploy ? async function(dist) {
|
|
285
286
|
await option?.finder?.beforeDeploy?.(dist, envs.viteEnvs);
|
package/package.json
CHANGED