@gooddata/reference-workspace 11.19.0-alpha.1 → 11.19.0-alpha.10

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 CHANGED
@@ -1,67 +1,70 @@
1
1
  {
2
2
  "name": "@gooddata/reference-workspace",
3
- "version": "11.19.0-alpha.1",
3
+ "version": "11.19.0-alpha.10",
4
4
  "description": "GoodData SDK - Reference Workspace for tests",
5
+ "license": "MIT",
6
+ "author": "GoodData",
5
7
  "repository": {
6
8
  "type": "git",
7
9
  "url": "https://github.com/gooddata/gooddata-ui-sdk.git",
8
10
  "directory": "tools/reference-workspace"
9
11
  },
10
- "license": "MIT",
11
- "author": "GoodData",
12
- "type": "module",
13
- "exports": "./esm/index.js",
14
- "browser": "./esm/index.js",
15
- "types": "./esm/index.d.ts",
16
12
  "files": [
17
13
  "esm/**/*.js",
18
14
  "esm/**/*.json",
19
15
  "esm/**/*.d.ts",
20
16
  "esm/**/*.map"
21
17
  ],
18
+ "type": "module",
19
+ "browser": "./esm/index.js",
20
+ "types": "./esm/index.d.ts",
21
+ "exports": "./esm/index.js",
22
22
  "dependencies": {
23
- "lodash-es": "^4.17.21",
23
+ "lodash-es": "^4.17.23",
24
24
  "tslib": "2.8.1",
25
- "@gooddata/sdk-backend-spi": "11.19.0-alpha.1",
26
- "@gooddata/sdk-model": "11.19.0-alpha.1"
25
+ "@gooddata/sdk-backend-spi": "11.19.0-alpha.10",
26
+ "@gooddata/sdk-model": "11.19.0-alpha.10"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/lodash-es": "^4.17.12",
30
30
  "@types/node": "^22.13.0",
31
31
  "@typescript-eslint/eslint-plugin": "8.52.0",
32
32
  "@typescript-eslint/parser": "8.52.0",
33
+ "@typescript/native-preview": "7.0.0-dev.20260202.1",
33
34
  "dependency-cruiser": "^14.1.2",
34
- "eslint": "^8.57.1",
35
- "eslint-config-prettier": "10.1.8",
35
+ "eslint": "^9.39.2",
36
+ "eslint-import-resolver-typescript": "4.4.4",
36
37
  "eslint-plugin-header": "3.1.1",
37
- "eslint-plugin-import": "2.32.0",
38
38
  "eslint-plugin-import-esm": "1.2.1",
39
+ "eslint-plugin-import-x": "4.16.1",
39
40
  "eslint-plugin-jsdoc": "62.1.0",
40
41
  "eslint-plugin-no-barrel-files": "1.2.2",
41
- "eslint-plugin-no-only-tests": "2.6.0",
42
- "eslint-plugin-prettier": "5.5.4",
43
- "eslint-plugin-regexp": "1.15.0",
44
42
  "eslint-plugin-sonarjs": "3.0.6",
45
- "eslint-plugin-tsdoc": "0.2.14",
46
- "prettier": "^3.6.2",
43
+ "oxfmt": "0.27.0",
44
+ "oxlint": "^1.43.0",
47
45
  "typescript": "5.9.3",
48
- "@gooddata/eslint-config": "11.19.0-alpha.1"
46
+ "@gooddata/eslint-config": "11.19.0-alpha.10",
47
+ "@gooddata/oxlint-config": "11.19.0-alpha.10"
49
48
  },
50
49
  "scripts": {
51
50
  "_phase:build": "npm run build",
52
51
  "_phase:validate": "npm run validate",
53
- "build": "tsc -p tsconfig.json",
52
+ "build": "tsgo -p tsconfig.json",
54
53
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
55
54
  "clear-recordings": "rm -r src/recordings/uiTestScenarios",
56
55
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
57
- "eslint": "eslint -c .eslintrc.cjs src/",
58
- "eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
56
+ "eslint": "eslint src",
57
+ "eslint-fix": "eslint src --fix",
59
58
  "export-ref-workspace": "cd ../reference-workspace-mgmt && npm run export-ref-workspace",
60
59
  "import-ref-workspace": "cd ../reference-workspace-mgmt && npm run import-ref-workspace",
61
- "prettier-check": "prettier --no-error-on-unmatched-pattern --check '{src,test}/**/*.{json,scss,md,yaml,html}'",
62
- "prettier-write": "prettier --no-error-on-unmatched-pattern --write '{src,test}/**/*.{json,scss,md,yaml,html}'",
60
+ "oxfmt-check": "oxfmt --check .",
61
+ "oxfmt-write": "oxfmt .",
63
62
  "refresh-md": "../reference-workspace-mgmt/bin/refresh-md.sh && npm run build",
64
- "refresh-recordings": "../reference-workspace-mgmt/bin/refresh-recordings.sh && npm run prettier-write && npm run build",
65
- "validate": "npm run dep-cruiser && npm run eslint && npm run prettier-check"
63
+ "refresh-recordings": "../reference-workspace-mgmt/bin/refresh-recordings.sh && npm run oxfmt-write && npm run build",
64
+ "validate": "npm run dep-cruiser && npm run lint && npm run oxfmt-check",
65
+ "lint": "npm run oxlint && npm run eslint",
66
+ "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
67
+ "oxlint": "oxlint .",
68
+ "oxlint-fix": "oxlint . --fix"
66
69
  }
67
70
  }