@gooddata/app-toolkit 11.19.0-alpha.2 → 11.19.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.
package/README.md CHANGED
@@ -10,7 +10,7 @@ To learn more, check [the source monorepo](https://github.com/gooddata/gooddata-
10
10
  This package implements GoodData Application Development Toolkit (ADT). The primary entry point to the toolkit is its
11
11
  CLI tool called `gdc-apps`. Through this CLI tool you can currently:
12
12
 
13
- - Create a new project to develop a GoodData.UI powered React application
13
+ - Create a new project to develop a GoodData.UI powered React application
14
14
 
15
15
  ## License
16
16
 
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.19.0-alpha.2";
1
+ export declare const LIB_VERSION = "11.19.0-alpha.4";
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.19.0-alpha.2";
3
+ export const LIB_VERSION = "11.19.0-alpha.4";
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.19.0-alpha.2",
3
+ "version": "11.19.0-alpha.4",
4
4
  "description": "CLI with useful tools for creating and maintaining GoodData web applications.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -38,7 +38,7 @@
38
38
  "fast-glob": "3.3.3",
39
39
  "fs-extra": "^10.0.0",
40
40
  "inquirer": "^8.2.3",
41
- "lodash-es": "^4.17.21",
41
+ "lodash-es": "^4.17.23",
42
42
  "ora": "^5.3.0",
43
43
  "strip-ansi": "^6.0.0",
44
44
  "tar": "^6.2.1",
@@ -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-backend-tiger": "11.19.0-alpha.2",
50
- "@gooddata/sdk-backend-spi": "11.19.0-alpha.2",
51
- "@gooddata/sdk-model": "11.19.0-alpha.2"
49
+ "@gooddata/sdk-backend-spi": "11.19.0-alpha.4",
50
+ "@gooddata/sdk-backend-tiger": "11.19.0-alpha.4",
51
+ "@gooddata/sdk-model": "11.19.0-alpha.4"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/columnify": "^1.5.1",
@@ -61,23 +61,19 @@
61
61
  "@typescript-eslint/eslint-plugin": "8.52.0",
62
62
  "@typescript-eslint/parser": "8.52.0",
63
63
  "dependency-cruiser": "^14.1.2",
64
- "eslint": "^8.57.1",
65
- "eslint-config-prettier": "10.1.8",
64
+ "eslint": "^9.39.2",
66
65
  "eslint-plugin-header": "3.1.1",
67
- "eslint-plugin-import": "2.32.0",
68
66
  "eslint-plugin-import-esm": "1.2.1",
67
+ "eslint-plugin-import-x": "4.16.1",
69
68
  "eslint-plugin-jsdoc": "62.1.0",
70
69
  "eslint-plugin-no-barrel-files": "1.2.2",
71
- "eslint-plugin-no-only-tests": "2.6.0",
72
- "eslint-plugin-prettier": "5.5.4",
73
- "eslint-plugin-regexp": "1.15.0",
70
+ "eslint-plugin-no-only-tests": "3.3.0",
74
71
  "eslint-plugin-sonarjs": "3.0.6",
75
- "eslint-plugin-tsdoc": "0.2.14",
76
72
  "prettier": "^3.6.2",
77
73
  "typescript": "5.9.3",
78
74
  "vitest": "4.0.8",
79
75
  "webpack": "5.93.0",
80
- "@gooddata/eslint-config": "11.19.0-alpha.2"
76
+ "@gooddata/eslint-config": "11.19.0-alpha.4"
81
77
  },
82
78
  "scripts": {
83
79
  "_phase:build": "npm run build",
@@ -88,10 +84,10 @@
88
84
  "build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
89
85
  "clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm build coverage *.log tsconfig.tsbuildinfo",
90
86
  "dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
91
- "eslint": "eslint -c .eslintrc.cjs src/",
92
- "eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
93
- "prettier-check": "prettier --no-error-on-unmatched-pattern --check '{src,test}/**/*.{json,scss,md,yaml,html}'",
94
- "prettier-write": "prettier --no-error-on-unmatched-pattern --write '{src,test}/**/*.{json,scss,md,yaml,html}'",
87
+ "eslint": "eslint src",
88
+ "eslint-fix": "eslint src --fix",
89
+ "prettier-check": "prettier --check .",
90
+ "prettier-write": "prettier --write .",
95
91
  "test": "vitest watch --passWithNoTests",
96
92
  "test-once": "vitest run --passWithNoTests",
97
93
  "validate": "tsc && npm run dep-cruiser && npm run eslint && npm run prettier-check"