postcss-normalize-repeat-style 5.1.1 → 6.0.0

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/types/lib/map.d.ts +1 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss-normalize-repeat-style",
3
- "version": "5.1.1",
3
+ "version": "6.0.0",
4
4
  "description": "Convert two value syntax for repeat-style into one value.",
5
5
  "main": "src/index.js",
6
6
  "types": "types/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "homepage": "https://github.com/cssnano/cssnano",
26
26
  "engines": {
27
- "node": "^10 || ^12 || >=14.0"
27
+ "node": "^14 || ^16 || >=18.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "postcss": "^8.2.15"
@@ -1,15 +1,2 @@
1
- declare const _exports: {
2
- clear(): void;
3
- delete(key: string): boolean;
4
- forEach(callbackfn: (value: string, key: string, map: Map<string, string>) => void, thisArg?: any): void;
5
- get(key: string): string | undefined;
6
- has(key: string): boolean;
7
- set(key: string, value: string): Map<string, string>;
8
- readonly size: number;
9
- entries(): IterableIterator<[string, string]>;
10
- keys(): IterableIterator<string>;
11
- values(): IterableIterator<string>;
12
- [Symbol.iterator](): IterableIterator<[string, string]>;
13
- readonly [Symbol.toStringTag]: string;
14
- };
1
+ declare const _exports: Map<string, string>;
15
2
  export = _exports;