@gooddata/sdk-ui-all 10.40.0-alpha.8 → 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.
Files changed (1) hide show
  1. package/package.json +12 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-all",
3
- "version": "10.40.0-alpha.8",
3
+ "version": "10.41.0-alpha.1",
4
4
  "author": "GoodData",
5
5
  "description": "GoodData SDK - All-In-One",
6
6
  "repository": {
@@ -24,14 +24,14 @@
24
24
  ],
25
25
  "dependencies": {
26
26
  "tslib": "2.8.1",
27
- "@gooddata/sdk-backend-spi": "10.40.0-alpha.8",
28
- "@gooddata/sdk-model": "10.40.0-alpha.8",
29
- "@gooddata/sdk-ui": "10.40.0-alpha.8",
30
- "@gooddata/sdk-ui-charts": "10.40.0-alpha.8",
31
- "@gooddata/sdk-ui-ext": "10.40.0-alpha.8",
32
- "@gooddata/sdk-ui-filters": "10.40.0-alpha.8",
33
- "@gooddata/sdk-ui-geo": "10.40.0-alpha.8",
34
- "@gooddata/sdk-ui-pivot": "10.40.0-alpha.8"
27
+ "@gooddata/sdk-backend-spi": "10.41.0-alpha.1",
28
+ "@gooddata/sdk-model": "10.41.0-alpha.1",
29
+ "@gooddata/sdk-ui": "10.41.0-alpha.1",
30
+ "@gooddata/sdk-ui-charts": "10.41.0-alpha.1",
31
+ "@gooddata/sdk-ui-ext": "10.41.0-alpha.1",
32
+ "@gooddata/sdk-ui-geo": "10.41.0-alpha.1",
33
+ "@gooddata/sdk-ui-filters": "10.41.0-alpha.1",
34
+ "@gooddata/sdk-ui-pivot": "10.41.0-alpha.1"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@gooddata/eslint-config": "^4.1.1",
@@ -56,6 +56,8 @@
56
56
  "typescript": "5.8.3"
57
57
  },
58
58
  "scripts": {
59
+ "_phase:build": "npm run build",
60
+ "_phase:validate": "npm run validate",
59
61
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
60
62
  "build": "tsc -p tsconfig.json && npm run api-extractor",
61
63
  "api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
@@ -66,7 +68,6 @@
66
68
  "prettier-write": "prettier --write '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
67
69
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
68
70
  "dep-cruiser-ci": "mkdir -p ci/results && depcruise --validate .dependency-cruiser.cjs --output-type err-html src/ >./ci/results/dep-cruiser.html",
69
- "validate": "npm run dep-cruiser && npm run eslint && npm run prettier-check",
70
- "validate-ci": "export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser-ci && npm run eslint-ci && npm run prettier-check"
71
+ "validate": "export BROWSERSLIST_IGNORE_OLD_DATA=true && npm run dep-cruiser && npm run eslint && npm run prettier-check"
71
72
  }
72
73
  }