@gooddata/catalog-export 10.41.0-alpha.2 → 10.41.0-alpha.4

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 = "10.41.0-alpha.2";
1
+ export declare const LIB_VERSION = "10.41.0-alpha.4";
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 = "10.41.0-alpha.2";
3
+ export const LIB_VERSION = "10.41.0-alpha.4";
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,7 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/catalog-export",
3
- "version": "10.41.0-alpha.2",
4
- "author": "GoodData",
3
+ "version": "10.41.0-alpha.4",
5
4
  "description": "GoodData SDK Catalog Export tooling",
6
5
  "repository": {
7
6
  "type": "git",
@@ -9,6 +8,7 @@
9
8
  "directory": "tools/catalog-export"
10
9
  },
11
10
  "license": "MIT",
11
+ "author": "GoodData",
12
12
  "type": "module",
13
13
  "exports": "./esm/index.js",
14
14
  "types": "./esm/index.d.ts",
@@ -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": "10.41.0-alpha.2",
40
- "@gooddata/sdk-model": "10.41.0-alpha.2"
39
+ "@gooddata/api-client-tiger": "10.41.0-alpha.4",
40
+ "@gooddata/sdk-model": "10.41.0-alpha.4"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@gooddata/eslint-config": "^4.1.1",
@@ -66,22 +66,22 @@
66
66
  },
67
67
  "scripts": {
68
68
  "_phase:build": "npm run build",
69
- "_phase:test": "npm run test-once",
70
69
  "_phase:post-build": "npm run build-dynamic-files",
70
+ "_phase:test": "npm run test-once",
71
71
  "_phase:validate": "npm run validate",
72
- "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
73
72
  "build": "bash scripts/build.sh",
74
73
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
75
- "test": "vitest watch",
76
- "test-once": "vitest run",
77
- "test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
74
+ "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
75
+ "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
76
+ "dep-cruiser-ci": "mkdir -p ci/results && depcruise --validate .dependency-cruiser.cjs --output-type err-html src/ >./ci/results/dep-cruiser.html",
78
77
  "eslint": "eslint -c .eslintrc.cjs src/",
79
- "eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
80
78
  "eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml -c .eslintrc.cjs src/",
79
+ "eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
81
80
  "prettier-check": "prettier --check '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
82
81
  "prettier-write": "prettier --write '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
83
- "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
84
- "dep-cruiser-ci": "mkdir -p ci/results && depcruise --validate .dependency-cruiser.cjs --output-type err-html src/ >./ci/results/dep-cruiser.html",
82
+ "test": "vitest watch",
83
+ "test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
84
+ "test-once": "vitest run",
85
85
  "validate": "tsc && npm run dep-cruiser && npm run eslint && npm run prettier-check"
86
86
  }
87
87
  }