@gooddata/reference-workspace 11.20.0-alpha.0 → 11.20.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 +11 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/reference-workspace",
3
- "version": "11.20.0-alpha.0",
3
+ "version": "11.20.0-alpha.1",
4
4
  "description": "GoodData SDK - Reference Workspace for tests",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -22,8 +22,8 @@
22
22
  "dependencies": {
23
23
  "lodash-es": "^4.17.23",
24
24
  "tslib": "2.8.1",
25
- "@gooddata/sdk-backend-spi": "11.20.0-alpha.0",
26
- "@gooddata/sdk-model": "11.20.0-alpha.0"
25
+ "@gooddata/sdk-backend-spi": "11.20.0-alpha.1",
26
+ "@gooddata/sdk-model": "11.20.0-alpha.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/lodash-es": "^4.17.12",
@@ -44,8 +44,8 @@
44
44
  "oxlint": "^1.43.0",
45
45
  "oxlint-tsgolint": "0.11.4",
46
46
  "typescript": "5.9.3",
47
- "@gooddata/eslint-config": "11.20.0-alpha.0",
48
- "@gooddata/oxlint-config": "11.20.0-alpha.0"
47
+ "@gooddata/eslint-config": "11.20.0-alpha.1",
48
+ "@gooddata/oxlint-config": "11.20.0-alpha.1"
49
49
  },
50
50
  "scripts": {
51
51
  "_phase:build": "npm run build",
@@ -54,18 +54,14 @@
54
54
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
55
55
  "clear-recordings": "rm -r src/recordings/uiTestScenarios",
56
56
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
57
- "eslint": "eslint src",
58
- "eslint-fix": "eslint src --fix",
59
57
  "export-ref-workspace": "cd ../reference-workspace-mgmt && npm run export-ref-workspace",
60
58
  "import-ref-workspace": "cd ../reference-workspace-mgmt && npm run import-ref-workspace",
61
- "oxfmt-check": "oxfmt --check .",
62
- "oxfmt-write": "oxfmt .",
59
+ "format-check": "oxfmt --check .",
60
+ "format-write": "oxfmt .",
63
61
  "refresh-md": "../reference-workspace-mgmt/bin/refresh-md.sh && npm run build",
64
- "refresh-recordings": "../reference-workspace-mgmt/bin/refresh-recordings.sh && npm run oxfmt-write && npm run build",
65
- "validate": "npm run dep-cruiser && npm run lint && npm run oxfmt-check",
66
- "lint": "npm run oxlint && npm run eslint",
67
- "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
68
- "oxlint": "oxlint . --type-aware",
69
- "oxlint-fix": "oxlint . --type-aware --fix"
62
+ "refresh-recordings": "../reference-workspace-mgmt/bin/refresh-recordings.sh && npm run format-write && npm run build",
63
+ "validate": "npm run dep-cruiser && npm run lint && npm run format-check",
64
+ "lint": "oxlint . --type-aware && eslint src",
65
+ "lint-fix": "oxlint . --type-aware --fix && eslint src --fix"
70
66
  }
71
67
  }