@gooddata/mock-handling 11.20.0-alpha.0 → 11.20.0-alpha.2

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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.20.0-alpha.0";
1
+ export declare const LIB_VERSION = "11.20.0-alpha.2";
2
2
  export declare const LIB_DESCRIPTION = "GoodData SDK Mock data capture and management tool";
3
3
  export declare const LIB_NAME = "@gooddata/mock-handling";
4
4
  //# sourceMappingURL=__version.d.ts.map
package/esm/__version.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.20.0-alpha.0";
3
+ export const LIB_VERSION = "11.20.0-alpha.2";
4
4
  export const LIB_DESCRIPTION = "GoodData SDK Mock data capture and management tool";
5
5
  export const LIB_NAME = "@gooddata/mock-handling";
6
6
  //# sourceMappingURL=__version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/mock-handling",
3
- "version": "11.20.0-alpha.0",
3
+ "version": "11.20.0-alpha.2",
4
4
  "description": "GoodData SDK Mock data capture and management tool",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -30,9 +30,9 @@
30
30
  "ora": "^5.3.0",
31
31
  "p-map": "^3.0.0",
32
32
  "tslib": "2.8.1",
33
- "@gooddata/sdk-backend-spi": "11.20.0-alpha.0",
34
- "@gooddata/sdk-backend-tiger": "11.20.0-alpha.0",
35
- "@gooddata/sdk-model": "11.20.0-alpha.0"
33
+ "@gooddata/sdk-backend-spi": "11.20.0-alpha.2",
34
+ "@gooddata/sdk-backend-tiger": "11.20.0-alpha.2",
35
+ "@gooddata/sdk-model": "11.20.0-alpha.2"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/inquirer": "^8.2.6",
@@ -56,8 +56,8 @@
56
56
  "oxlint-tsgolint": "0.11.4",
57
57
  "typescript": "5.9.3",
58
58
  "vitest": "4.0.8",
59
- "@gooddata/eslint-config": "11.20.0-alpha.0",
60
- "@gooddata/oxlint-config": "11.20.0-alpha.0"
59
+ "@gooddata/eslint-config": "11.20.0-alpha.2",
60
+ "@gooddata/oxlint-config": "11.20.0-alpha.2"
61
61
  },
62
62
  "scripts": {
63
63
  "_phase:build": "npm run build",
@@ -70,17 +70,13 @@
70
70
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
71
71
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
72
72
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
73
- "eslint": "eslint src",
74
- "eslint-fix": "eslint src --fix",
75
- "oxfmt-check": "oxfmt --check .",
76
- "oxfmt-write": "oxfmt .",
73
+ "format-check": "oxfmt --check .",
74
+ "format-write": "oxfmt .",
77
75
  "test": "vitest watch",
78
76
  "test-once": "vitest run",
79
- "validate": "npm run dep-cruiser && npm run lint && npm run oxfmt-check",
77
+ "validate": "npm run dep-cruiser && npm run lint && npm run format-check",
80
78
  "validate-esm": "node --input-type=module --eval 'import \"@gooddata/mock-handling\"'",
81
- "lint": "npm run oxlint && npm run eslint",
82
- "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
83
- "oxlint": "oxlint . --type-aware",
84
- "oxlint-fix": "oxlint . --type-aware --fix"
79
+ "lint": "oxlint . --type-aware --quiet && eslint src",
80
+ "lint-fix": "oxlint . --type-aware --quiet --fix && eslint src --fix"
85
81
  }
86
82
  }