@gooddata/app-toolkit 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.
package/NOTICE CHANGED
@@ -7,9 +7,9 @@
7
7
 
8
8
  The following 3rd-party software packages may be used by or distributed with gooddata-ui-sdk. Any information relevant to third-party vendors listed below are collected using common, reasonable means.
9
9
 
10
- Date generated: 2026-2-6
10
+ Date generated: 2026-2-9
11
11
 
12
- Revision ID: 6f570c189f09946a44e44a25e1930465e85ac991
12
+ Revision ID: aa68c863df35fd293546c981c8bd9fa5b15780ea
13
13
 
14
14
  ================================================================================
15
15
  ================================================================================
@@ -35534,4 +35534,4 @@ POSSIBILITY OF SUCH DAMAGE.
35534
35534
  --------------------------------------------------------------------------------
35535
35535
  --------------------------------------------------------------------------------
35536
35536
 
35537
- Report Generated by FOSSA on 2026-2-6
35537
+ Report Generated by FOSSA on 2026-2-9
@@ -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 = "CLI with useful tools for creating and maintaining GoodData web applications.";
3
3
  export declare const LIB_NAME = "@gooddata/app-toolkit";
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 = "CLI with useful tools for creating and maintaining GoodData web applications.";
5
5
  export const LIB_NAME = "@gooddata/app-toolkit";
6
6
  //# sourceMappingURL=__version.js.map
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/app-toolkit",
3
- "version": "11.20.0-alpha.0",
3
+ "version": "11.20.0-alpha.2",
4
4
  "description": "CLI with useful tools for creating and maintaining GoodData web applications.",
5
5
  "license": "LicenseRef-LICENSE",
6
6
  "author": "GoodData",
@@ -46,9 +46,9 @@
46
46
  "validate-npm-package-name": "^5.0.0",
47
47
  "webpack-cli": "6.0.1",
48
48
  "webpack-dev-server": "5.2.2",
49
- "@gooddata/sdk-model": "11.20.0-alpha.0",
50
- "@gooddata/sdk-backend-spi": "11.20.0-alpha.0",
51
- "@gooddata/sdk-backend-tiger": "11.20.0-alpha.0"
49
+ "@gooddata/sdk-backend-spi": "11.20.0-alpha.2",
50
+ "@gooddata/sdk-backend-tiger": "11.20.0-alpha.2",
51
+ "@gooddata/sdk-model": "11.20.0-alpha.2"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/columnify": "^1.5.1",
@@ -76,8 +76,8 @@
76
76
  "typescript": "5.9.3",
77
77
  "vitest": "4.0.8",
78
78
  "webpack": "5.93.0",
79
- "@gooddata/oxlint-config": "11.20.0-alpha.0",
80
- "@gooddata/eslint-config": "11.20.0-alpha.0"
79
+ "@gooddata/eslint-config": "11.20.0-alpha.2",
80
+ "@gooddata/oxlint-config": "11.20.0-alpha.2"
81
81
  },
82
82
  "scripts": {
83
83
  "_phase:build": "npm run build",
@@ -88,16 +88,12 @@
88
88
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
89
89
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm build coverage *.log tsconfig.tsbuildinfo",
90
90
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
91
- "eslint": "eslint src",
92
- "eslint-fix": "eslint src --fix",
93
- "oxfmt-check": "oxfmt --check .",
94
- "oxfmt-write": "oxfmt .",
91
+ "format-check": "oxfmt --check .",
92
+ "format-write": "oxfmt .",
95
93
  "test": "vitest watch --passWithNoTests",
96
94
  "test-once": "vitest run --passWithNoTests",
97
- "validate": "npm run dep-cruiser && npm run lint && npm run oxfmt-check",
98
- "lint": "npm run oxlint && npm run eslint",
99
- "lint-fix": "npm run oxlint-fix && npm run eslint-fix",
100
- "oxlint": "oxlint . --type-aware",
101
- "oxlint-fix": "oxlint . --type-aware --fix"
95
+ "validate": "npm run dep-cruiser && npm run lint && npm run format-check",
96
+ "lint": "oxlint . --type-aware --quiet && eslint src",
97
+ "lint-fix": "oxlint . --type-aware --quiet --fix && eslint src --fix"
102
98
  }
103
99
  }