@adguard/agtree 2.1.0 → 2.1.2
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/agtree.d.ts +5 -2
- package/dist/agtree.js +17 -12626
- package/dist/agtree.mjs +11 -12620
- package/dist/compatibility-table-data.js +12634 -0
- package/package.json +8 -4
- package/dist/build.txt +0 -1
- package/dist/compatibility-tables.json +0 -12555
- package/dist/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adguard/agtree",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Tool set for working with adblock filter lists",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adblock",
|
|
@@ -37,7 +37,10 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
40
|
-
"dist"
|
|
40
|
+
"dist/agtree.d.ts",
|
|
41
|
+
"dist/agtree.js",
|
|
42
|
+
"dist/agtree.mjs",
|
|
43
|
+
"dist/compatibility-table-data.js"
|
|
41
44
|
],
|
|
42
45
|
"engines": {
|
|
43
46
|
"node": ">=18"
|
|
@@ -47,6 +50,7 @@
|
|
|
47
50
|
"@rollup/plugin-commonjs": "^25.0.2",
|
|
48
51
|
"@rollup/plugin-json": "^6.0.0",
|
|
49
52
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
53
|
+
"@rollup/plugin-replace": "^5.0.7",
|
|
50
54
|
"@rollup/plugin-swc": "^0.4.0",
|
|
51
55
|
"@rollup/plugin-typescript": "^11.1.2",
|
|
52
56
|
"@swc/core": "^1.7.24",
|
|
@@ -105,10 +109,10 @@
|
|
|
105
109
|
"tldts": "^5.7.112",
|
|
106
110
|
"xregexp": "^5.1.1",
|
|
107
111
|
"zod": "3.21.4",
|
|
108
|
-
"@adguard/css-tokenizer": "^1.1.
|
|
112
|
+
"@adguard/css-tokenizer": "^1.1.1"
|
|
109
113
|
},
|
|
110
114
|
"scripts": {
|
|
111
|
-
"build": "pnpm clean && pnpm build-txt && pnpm build-compatibility-tables && pnpm build-compatibility-tables-wiki && pnpm rollup --config rollup.config.ts --configPlugin typescript && rimraf dist/types",
|
|
115
|
+
"build": "pnpm clean && pnpm build-txt && pnpm build-compatibility-tables && pnpm build-compatibility-tables-wiki && pnpm rollup --config rollup.config.ts --configPlugin typescript && rimraf dist/types && rimraf dist/compatibility-table-data.json",
|
|
112
116
|
"build-txt": "tsx scripts/build-txt.ts",
|
|
113
117
|
"build-compatibility-tables": "tsx scripts/build-compatibility-tables.ts",
|
|
114
118
|
"build-compatibility-tables-wiki": "tsx scripts/build-compatibility-tables-wiki.ts",
|
package/dist/build.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
version=2.1.0
|