@gooddata/catalog-export 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.
@@ -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.1";
2
2
  export declare const LIB_DESCRIPTION = "GoodData SDK Catalog Export tooling";
3
3
  export declare const LIB_NAME = "@gooddata/catalog-export";
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.1";
4
4
  export const LIB_DESCRIPTION = "GoodData SDK Catalog Export tooling";
5
5
  export const LIB_NAME = "@gooddata/catalog-export";
6
6
  //# sourceMappingURL=__version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/catalog-export",
3
- "version": "11.20.0-alpha.0",
3
+ "version": "11.20.0-alpha.1",
4
4
  "description": "GoodData SDK Catalog Export tooling",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -36,8 +36,8 @@
36
36
  "strip-ansi": "^6.0.0",
37
37
  "ts-morph": "^26.0.0",
38
38
  "tslib": "2.8.1",
39
- "@gooddata/api-client-tiger": "11.20.0-alpha.0",
40
- "@gooddata/sdk-model": "11.20.0-alpha.0"
39
+ "@gooddata/api-client-tiger": "11.20.0-alpha.1",
40
+ "@gooddata/sdk-model": "11.20.0-alpha.1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/babel__core": "^7.20.1",
@@ -62,8 +62,8 @@
62
62
  "oxlint-tsgolint": "0.11.4",
63
63
  "typescript": "5.9.3",
64
64
  "vitest": "4.0.8",
65
- "@gooddata/eslint-config": "11.20.0-alpha.0",
66
- "@gooddata/oxlint-config": "11.20.0-alpha.0"
65
+ "@gooddata/eslint-config": "11.20.0-alpha.1",
66
+ "@gooddata/oxlint-config": "11.20.0-alpha.1"
67
67
  },
68
68
  "scripts": {
69
69
  "_phase:build": "npm run build",
@@ -76,16 +76,12 @@
76
76
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
77
77
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
78
78
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
79
- "eslint": "eslint src",
80
- "eslint-fix": "eslint src --fix",
81
- "oxfmt-check": "oxfmt --check .",
82
- "oxfmt-write": "oxfmt .",
79
+ "format-check": "oxfmt --check .",
80
+ "format-write": "oxfmt .",
83
81
  "test": "vitest watch",
84
82
  "test-once": "vitest run",
85
- "validate": "npm run dep-cruiser && npm run lint && npm run oxfmt-check",
86
- "lint": "npm run oxlint && npm run eslint",
87
- "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
88
- "oxlint": "oxlint . --type-aware",
89
- "oxlint-fix": "oxlint . --type-aware --fix"
83
+ "validate": "npm run dep-cruiser && npm run lint && npm run format-check",
84
+ "lint": "oxlint . --type-aware && eslint src",
85
+ "lint-fix": "oxlint . --type-aware --fix && eslint src --fix"
90
86
  }
91
87
  }