-
Notifications
You must be signed in to change notification settings - Fork 63
Update compiler to v3.1.3 and agtree to v3.2.4 #1118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
3bb9cc4
d651a69
9add14e
aba2079
2e001e0
b95016e
ef26a47
10a08d1
5fb01be
c40b072
e11f330
8f7830d
a839a89
a2b5cf1
a7555a2
63bddc6
a6b2f29
7a1b108
63b1e7a
171231b
48b286f
666c3d3
195c814
1e10e68
cce29fd
c2228aa
fe2a0e6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,52 +4,52 @@ | |
| "description": "AdGuard filters registry", | ||
| "homepage": "https://adguard.com", | ||
| "main": "scripts/build/build.js", | ||
| "type": "module", | ||
| "scripts": { | ||
| "auto-build": "bash scripts/auto_build.sh", | ||
| "lint": "yarn lint:code && yarn lint:types && yarn lint:md", | ||
| "lint:code": "eslint . --ext .js,.ts", | ||
| "lint:types": "tsc --noEmit --project tsconfig.json", | ||
| "lint:md": "markdownlint **/*.md", | ||
| "test": "jest .", | ||
| "build": "node scripts/build/build.js", | ||
| "test": "vitest run", | ||
| "build": "tsx scripts/build/build.js", | ||
| "build:patches": "node scripts/build/patches.js", | ||
| "validate": "yarn validate:platforms && yarn validate:locales", | ||
| "validate:platforms": "node scripts/validation/validate_platforms.js", | ||
| "validate:locales": "node scripts/validation/validate_locales.js", | ||
| "update-wildcard-domains": "node -r @swc-node/register scripts/wildcard-domain-processor update-wildcard-domains", | ||
| "expand-wildcard-domains": "node -r @swc-node/register scripts/wildcard-domain-processor expand-wildcard-domains", | ||
| "compress": "node scripts/repository/compress.js" | ||
| "validate:platforms": "tsx scripts/validation/validate_platforms.js", | ||
| "validate:locales": "tsx scripts/validation/validate_locales.js", | ||
| "update-wildcard-domains": "tsx scripts/wildcard-domain-processor update-wildcard-domains", | ||
jellizaveta marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "expand-wildcard-domains": "tsx scripts/wildcard-domain-processor expand-wildcard-domains", | ||
| "compress": "tsx scripts/repository/compress.js" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18" | ||
| "node": ">=22" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. which part of the code requires at least node 22? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think its too strict, probably we can reduce it in agtree as well There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I prefer not to decrease it in agtree, let's keep it 22 |
||
| }, | ||
| "dependencies": { | ||
| "@adguard/agtree": "^1.1.8", | ||
| "@adguard/agtree": "^3.2.4", | ||
| "@adguard/dead-domains-linter": "^1.0.22", | ||
| "@adguard/diff-builder": "1.1.2", | ||
| "adguard-filters-compiler": "git+https://github.com/AdguardTeam/FiltersCompiler.git#v1.2.8", | ||
| "crypto-js": "^4.2.0" | ||
| "@adguard/filters-compiler": "3.1.3", | ||
| "add": "^2.0.6", | ||
| "crypto-js": "^4.2.0", | ||
| "zod": "3" | ||
| }, | ||
| "devDependencies": { | ||
| "@swc-node/register": "^1.10.0", | ||
| "@swc/core": "^1.6.5", | ||
| "@swc/jest": "^0.2.36", | ||
| "@types/crypto-js": "^4.2.2", | ||
| "@types/jest": "^29.5.12", | ||
| "@types/node": "^20.14.9", | ||
| "@typescript-eslint/eslint-plugin": "^7.14.1", | ||
| "@typescript-eslint/parser": "^7.14.1", | ||
| "@vitest/coverage-v8": "^3.2.4", | ||
| "eslint": "^8.54.0", | ||
| "eslint-config-airbnb-base": "^15.0.0", | ||
| "eslint-config-airbnb-typescript": "^18.0.0", | ||
| "eslint-plugin-import": "^2.29.0", | ||
| "jest": "^29.7.0", | ||
| "markdownlint": "0.34.0", | ||
| "markdownlint-cli": "0.41.0", | ||
| "simple-git": "^3.21.0", | ||
| "tldts": "^6.1.30", | ||
| "ts-jest": "^29.1.5", | ||
| "ts-node": "^10.9.2", | ||
| "typescript": "^5.5.2" | ||
| "tsx": "^4.20.3", | ||
| "typescript": "^5.5.2", | ||
| "vitest": "^3.2.4" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,2 @@ | ||
| const FOLDER_WITH_NEW_FILTERS = 'platforms'; | ||
| const FOLDER_WITH_OLD_FILTERS = 'temp/platforms'; | ||
|
|
||
| module.exports = { | ||
| FOLDER_WITH_NEW_FILTERS, | ||
| FOLDER_WITH_OLD_FILTERS, | ||
| }; | ||
| export const FOLDER_WITH_NEW_FILTERS = 'platforms'; | ||
| export const FOLDER_WITH_OLD_FILTERS = 'temp/platforms'; |
Uh oh!
There was an error while loading. Please reload this page.