@seayoo-web/scripts 3.1.5 → 3.1.6

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 CHANGED
@@ -255,6 +255,7 @@ function definePageBuildConfig(option) {
255
255
  "core-js/es/symbol/iterator"
256
256
  ],
257
257
  additionalModernPolyfills: [
258
+ "core-js/es/global-this",
258
259
  "core-js/es/array/flat",
259
260
  "core-js/es/array/flat-map",
260
261
  "core-js/es/promise/all-settled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/scripts",
3
- "version": "3.1.5",
3
+ "version": "3.1.6",
4
4
  "description": "scripts for seayoo web repos",
5
5
  "type": "module",
6
6
  "source": "index.ts",
@@ -1,3 +1,3 @@
1
1
  import "colors";
2
2
  /** 启动脚本 */
3
- export declare function runDestoryScript(): void;
3
+ export declare function runDestroyScript(): void;
@@ -1,7 +0,0 @@
1
- import type { AcceptedPlugin } from "postcss";
2
- /**
3
- * postcss 配置,增加 nesting 插件支持
4
- */
5
- export declare const postcssConfig: {
6
- plugins: AcceptedPlugin[];
7
- };