@gooddata/util 11.18.0-alpha.7 → 11.18.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.
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/util",
|
|
3
|
-
"version": "11.18.0
|
|
3
|
+
"version": "11.18.0",
|
|
4
4
|
"description": "GoodData Utility Functions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"dependency-cruiser": "^14.1.2",
|
|
35
35
|
"eslint": "^8.57.1",
|
|
36
36
|
"eslint-config-prettier": "10.1.8",
|
|
37
|
-
"eslint-plugin-eslint-comments": "3.2.0",
|
|
38
37
|
"eslint-plugin-header": "3.1.1",
|
|
39
38
|
"eslint-plugin-import": "2.32.0",
|
|
40
39
|
"eslint-plugin-import-esm": "1.2.1",
|
|
@@ -43,19 +42,22 @@
|
|
|
43
42
|
"eslint-plugin-no-only-tests": "2.6.0",
|
|
44
43
|
"eslint-plugin-prettier": "5.5.4",
|
|
45
44
|
"eslint-plugin-regexp": "1.15.0",
|
|
46
|
-
"eslint-plugin-sonarjs": "0.
|
|
45
|
+
"eslint-plugin-sonarjs": "3.0.6",
|
|
47
46
|
"eslint-plugin-tsdoc": "0.2.14",
|
|
47
|
+
"npm-run-all": "^4.1.5",
|
|
48
48
|
"prettier": "^3.6.2",
|
|
49
49
|
"typescript": "5.9.3",
|
|
50
50
|
"vitest": "4.0.8",
|
|
51
|
-
"@gooddata/eslint-config": "11.18.0
|
|
51
|
+
"@gooddata/eslint-config": "11.18.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"_phase:build": "npm run build",
|
|
55
55
|
"_phase:test": "npm run test-once",
|
|
56
56
|
"_phase:validate": "npm run validate",
|
|
57
57
|
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
|
|
58
|
-
"build": "
|
|
58
|
+
"build": "npm-run-all -p build-check build-ts && npm run api-extractor",
|
|
59
|
+
"build-check": "tsc",
|
|
60
|
+
"build-ts": "tsc -p tsconfig.build.json",
|
|
59
61
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
|
|
60
62
|
"dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
|
|
61
63
|
"eslint": "eslint -c .eslintrc.cjs --ignore-path ../.eslintignore .",
|
|
@@ -64,7 +66,7 @@
|
|
|
64
66
|
"prettier-write": "prettier --no-error-on-unmatched-pattern --write '{src,test}/**/*.{json,scss,md,yaml,html}'",
|
|
65
67
|
"test": "vitest watch",
|
|
66
68
|
"test-once": "vitest run",
|
|
67
|
-
"validate": "
|
|
69
|
+
"validate": "export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run prettier-check",
|
|
68
70
|
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/util\"'"
|
|
69
71
|
}
|
|
70
72
|
}
|