@gooddata/sdk-ui-geo 10.40.0 → 10.41.0-alpha.1
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 +12 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-geo",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.41.0-alpha.1",
|
|
4
4
|
"description": "GoodData.UI SDK - Geo Charts",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"ts-invariant": "^0.7.5",
|
|
42
42
|
"tslib": "2.8.1",
|
|
43
43
|
"uuid": "^11.1.0",
|
|
44
|
-
"@gooddata/sdk-backend-spi": "10.
|
|
45
|
-
"@gooddata/sdk-
|
|
46
|
-
"@gooddata/sdk-
|
|
47
|
-
"@gooddata/sdk-ui-
|
|
48
|
-
"@gooddata/sdk-ui-
|
|
49
|
-
"@gooddata/sdk-ui-vis-commons": "10.
|
|
44
|
+
"@gooddata/sdk-backend-spi": "10.41.0-alpha.1",
|
|
45
|
+
"@gooddata/sdk-ui": "10.41.0-alpha.1",
|
|
46
|
+
"@gooddata/sdk-model": "10.41.0-alpha.1",
|
|
47
|
+
"@gooddata/sdk-ui-kit": "10.41.0-alpha.1",
|
|
48
|
+
"@gooddata/sdk-ui-theme-provider": "10.41.0-alpha.1",
|
|
49
|
+
"@gooddata/sdk-ui-vis-commons": "10.41.0-alpha.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|
|
@@ -93,9 +93,12 @@
|
|
|
93
93
|
"typescript": "5.8.3",
|
|
94
94
|
"vitest": "3.2.4",
|
|
95
95
|
"vitest-dom": "0.1.1",
|
|
96
|
-
"@gooddata/sdk-backend-mockingbird": "10.
|
|
96
|
+
"@gooddata/sdk-backend-mockingbird": "10.41.0-alpha.1"
|
|
97
97
|
},
|
|
98
98
|
"scripts": {
|
|
99
|
+
"_phase:build": "npm run build",
|
|
100
|
+
"_phase:test": "npm run test-once",
|
|
101
|
+
"_phase:validate": "npm run validate",
|
|
99
102
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm styles/css coverage *.log tsconfig.tsbuildinfo",
|
|
100
103
|
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
|
|
101
104
|
"build": "bash scripts/build.sh",
|
|
@@ -111,10 +114,8 @@
|
|
|
111
114
|
"dep-cruiser-ci": "mkdir -p ci/results && depcruise --validate .dependency-cruiser.cjs --output-type err-html src/ >./ci/results/dep-cruiser.html",
|
|
112
115
|
"stylelint": "stylelint '**/*.scss'",
|
|
113
116
|
"stylelint-ci": "stylelint '**/*.scss' --custom-formatter=node_modules/stylelint-checkstyle-formatter > ./ci/results/stylelint-results.xml",
|
|
114
|
-
"validate": "tsc && npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
|
|
115
|
-
"validate-ci": "tsc && export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser-ci && npm run eslint-ci && npm run stylelint-ci && npm run validate-locales-ci && npm run prettier-check && npm run validate-theming",
|
|
117
|
+
"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 && npm run validate-theming",
|
|
116
118
|
"validate-locales": "cd ../sdk-ui && npm run validate-locales",
|
|
117
|
-
"validate-locales-ci": "cd ../sdk-ui && npm run validate-locales-ci",
|
|
118
119
|
"validate-theming": "npm run scss && node scripts/validateCss.js",
|
|
119
120
|
"scss": "sass --load-path=node_modules --load-path=node_modules/mapbox-gl/dist styles/scss/main.scss:styles/css/main.css",
|
|
120
121
|
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-ui-geo\"'"
|