@gooddata/sdk-ui-vis-commons 11.18.0-alpha.7 → 11.18.0-alpha.8

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 (1) hide show
  1. package/package.json +15 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-vis-commons",
3
- "version": "11.18.0-alpha.7",
3
+ "version": "11.18.0-alpha.8",
4
4
  "description": "GoodData.UI SDK - common functionality for different types of visualizations",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,11 +36,11 @@
36
36
  "react-intl": "7.1.11",
37
37
  "react-measure": "^2.5.2",
38
38
  "tslib": "2.8.1",
39
- "@gooddata/sdk-backend-spi": "11.18.0-alpha.7",
40
- "@gooddata/sdk-ui-kit": "11.18.0-alpha.7",
41
- "@gooddata/sdk-model": "11.18.0-alpha.7",
42
- "@gooddata/sdk-ui-theme-provider": "11.18.0-alpha.7",
43
- "@gooddata/sdk-ui": "11.18.0-alpha.7"
39
+ "@gooddata/sdk-backend-spi": "11.18.0-alpha.8",
40
+ "@gooddata/sdk-model": "11.18.0-alpha.8",
41
+ "@gooddata/sdk-ui": "11.18.0-alpha.8",
42
+ "@gooddata/sdk-ui-kit": "11.18.0-alpha.8",
43
+ "@gooddata/sdk-ui-theme-provider": "11.18.0-alpha.8"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@gooddata/stylelint-config": "^5.0.0",
@@ -59,7 +59,6 @@
59
59
  "dependency-cruiser": "^14.1.2",
60
60
  "eslint": "^8.57.1",
61
61
  "eslint-config-prettier": "10.1.8",
62
- "eslint-plugin-eslint-comments": "3.2.0",
63
62
  "eslint-plugin-header": "3.1.1",
64
63
  "eslint-plugin-import": "2.32.0",
65
64
  "eslint-plugin-import-esm": "1.2.1",
@@ -70,9 +69,10 @@
70
69
  "eslint-plugin-react": "7.37.5",
71
70
  "eslint-plugin-react-hooks": "4.6.0",
72
71
  "eslint-plugin-regexp": "1.15.0",
73
- "eslint-plugin-sonarjs": "0.16.0",
72
+ "eslint-plugin-sonarjs": "3.0.6",
74
73
  "eslint-plugin-tsdoc": "0.2.14",
75
74
  "happy-dom": "18.0.1",
75
+ "npm-run-all": "^4.1.5",
76
76
  "prettier": "^3.6.2",
77
77
  "raf": "^3.4.1",
78
78
  "react": "19.1.1",
@@ -84,9 +84,9 @@
84
84
  "typescript": "5.9.3",
85
85
  "vitest": "4.0.8",
86
86
  "vitest-dom": "0.1.1",
87
- "@gooddata/eslint-config": "11.18.0-alpha.7",
88
- "@gooddata/reference-workspace": "11.18.0-alpha.7",
89
- "@gooddata/sdk-backend-mockingbird": "11.18.0-alpha.7"
87
+ "@gooddata/eslint-config": "11.18.0-alpha.8",
88
+ "@gooddata/reference-workspace": "11.18.0-alpha.8",
89
+ "@gooddata/sdk-backend-mockingbird": "11.18.0-alpha.8"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "react": "^18.0.0 || ^19.0.0",
@@ -97,7 +97,9 @@
97
97
  "_phase:test": "npm run test-once",
98
98
  "_phase:validate": "npm run validate",
99
99
  "api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
100
- "build": "tsc -p tsconfig.build.json && npm run api-extractor",
100
+ "build": "npm-run-all -p build-check build-ts && npm run api-extractor",
101
+ "build-check": "tsc",
102
+ "build-ts": "tsc -p tsconfig.build.json",
101
103
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage styles/css *.log tsconfig.tsbuildinfo",
102
104
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
103
105
  "eslint": "eslint -c .eslintrc.cjs --ignore-path ../.eslintignore .",
@@ -108,7 +110,7 @@
108
110
  "stylelint-fix": "stylelint '**/*.scss' --fix",
109
111
  "test": "vitest watch",
110
112
  "test-once": "vitest run",
111
- "validate": "tsc && export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check",
113
+ "validate": "export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check",
112
114
  "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-vis-commons\"'",
113
115
  "validate-locales": "cd ../sdk-ui && npm run validate-locales"
114
116
  }