@blocklet/pages-kit-block-studio 0.1.24 → 0.1.26

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.
@@ -186,6 +186,15 @@ function initBlockStudioPlugins(options) {
186
186
  // maxConcurrent: 5, // 可选,默认值
187
187
  // timeout: 30 * 1000, // 可选,默认值 30 秒
188
188
  // }),
189
+ {
190
+ name: 'build-force-exit',
191
+ apply: 'build',
192
+ enforce: 'post',
193
+ closeBundle() {
194
+ // ensure vite build exit
195
+ process.exit(0);
196
+ },
197
+ },
189
198
  ];
190
199
  }
191
200
  exports.default = initBlockStudioPlugins;