@cbs-consulting/generator-btp 1.2.0 → 1.2.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.
@@ -107,7 +107,7 @@ describe("generator-btp:ui5", () => {
107
107
  expect(
108
108
  pkgContent.devDependencies["eslint-config-prettier"],
109
109
  ).toBeDefined();
110
- expect(pkgContent.devDependencies["cbs-tools"]).toBeDefined();
110
+ expect(pkgContent.devDependencies["@cbs-consulting/tools"]).toBeDefined();
111
111
  expect(pkgContent.devDependencies["@ui5/linter"]).toBeDefined();
112
112
  });
113
113
 
@@ -1,6 +1,5 @@
1
1
  {
2
- "compilerOptions": {
3
- "rootDir": "DELETE",
4
- "rootDirs": ["./webapp", "../../@cds-models"]
5
- }
2
+ "compilerOptions": {
3
+ "rootDirs": ["./webapp", "../../@cds-models"]
4
+ }
6
5
  }
@@ -1,9 +1,9 @@
1
1
  {
2
- "devDependencies": [
3
- "eslint",
4
- "typescript-eslint",
5
- "eslint-config-prettier",
6
- "cbs-tools",
7
- "@ui5/linter"
8
- ]
2
+ "devDependencies": [
3
+ "eslint@9",
4
+ "typescript-eslint",
5
+ "eslint-config-prettier",
6
+ "@cbs-consulting/tools",
7
+ "@ui5/linter"
8
+ ]
9
9
  }
@@ -1,2 +1,2 @@
1
- import ui5LinterConfig from "@cbs/tools/ui5linter/ui5lint.config.mjs"
2
- export default ui5LinterConfig
1
+ import ui5LinterConfig from "@cbs-consulting/tools/ui5linter/ui5lint.config.mjs";
2
+ export default ui5LinterConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbs-consulting/generator-btp",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "description": "Yeoman generator for bootstrapping CAP/UI5 projects with TypeScript, ESLint, and other essential configurations",
6
6
  "main": "generators/app/index.js",