@gooddata/sdk-embedding 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.
Files changed (1) hide show
  1. package/package.json +9 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-embedding",
3
- "version": "11.18.0-alpha.7",
3
+ "version": "11.18.0",
4
4
  "description": "GoodData Embedding APIs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@
29
29
  "lodash-es": "^4.17.21",
30
30
  "ts-invariant": "^0.7.5",
31
31
  "tslib": "2.8.1",
32
- "@gooddata/sdk-model": "11.18.0-alpha.7"
32
+ "@gooddata/sdk-model": "11.18.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@microsoft/api-documenter": "^7.17.0",
@@ -40,7 +40,6 @@
40
40
  "dependency-cruiser": "^14.1.2",
41
41
  "eslint": "^8.57.1",
42
42
  "eslint-config-prettier": "10.1.8",
43
- "eslint-plugin-eslint-comments": "3.2.0",
44
43
  "eslint-plugin-header": "3.1.1",
45
44
  "eslint-plugin-import": "2.32.0",
46
45
  "eslint-plugin-import-esm": "1.2.1",
@@ -49,19 +48,22 @@
49
48
  "eslint-plugin-no-only-tests": "2.6.0",
50
49
  "eslint-plugin-prettier": "5.5.4",
51
50
  "eslint-plugin-regexp": "1.15.0",
52
- "eslint-plugin-sonarjs": "0.16.0",
51
+ "eslint-plugin-sonarjs": "3.0.6",
53
52
  "eslint-plugin-tsdoc": "0.2.14",
53
+ "npm-run-all": "^4.1.5",
54
54
  "prettier": "^3.6.2",
55
55
  "typescript": "5.9.3",
56
56
  "vitest": "4.0.8",
57
- "@gooddata/eslint-config": "11.18.0-alpha.7"
57
+ "@gooddata/eslint-config": "11.18.0"
58
58
  },
59
59
  "scripts": {
60
60
  "_phase:build": "npm run build",
61
61
  "_phase:test": "npm run test-once",
62
62
  "_phase:validate": "npm run validate",
63
63
  "api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
64
- "build": "tsc -p tsconfig.build.json && npm run api-extractor",
64
+ "build": "npm-run-all -p build-check build-ts && npm run api-extractor",
65
+ "build-check": "tsc",
66
+ "build-ts": "tsc -p tsconfig.build.json",
65
67
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
66
68
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
67
69
  "eslint": "eslint -c .eslintrc.cjs --ignore-path ../.eslintignore .",
@@ -70,7 +72,7 @@
70
72
  "prettier-write": "prettier --no-error-on-unmatched-pattern --write '{src,test}/**/*.{json,scss,md,yaml,html}'",
71
73
  "test": "vitest watch",
72
74
  "test-once": "vitest run",
73
- "validate": "tsc && npm run dep-cruiser && npm run eslint && npm run prettier-check",
75
+ "validate": "npm run dep-cruiser && npm run eslint && npm run prettier-check",
74
76
  "validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-embedding\"' "
75
77
  }
76
78
  }