@sap-ux/ui5-application-writer 1.6.8 → 1.7.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.
@@ -19,7 +19,7 @@ function validateAppId(appId) {
19
19
  if (!appId) {
20
20
  throw new Error((0, i18n_1.t)('error.missingRequiredProperty', { propertyName: 'app.id' }));
21
21
  }
22
- const match = appId.match(/["]/);
22
+ const match = appId.match(/"/);
23
23
  if (match) {
24
24
  throw new Error((0, i18n_1.t)('error.disallowedCharacters', { propertyName: 'app.id', disallowedChars: `${match?.join()}` }));
25
25
  }
package/dist/types.d.ts CHANGED
@@ -131,12 +131,6 @@ export interface UI5 {
131
131
  customUi5Libs?: string[];
132
132
  }
133
133
  export interface AppOptions {
134
- /**
135
- * @deprecated
136
- * Enables code assist
137
- * No longer supported. Will be removed from the interface in future releases.
138
- */
139
- codeAssist: boolean;
140
134
  eslint: boolean;
141
135
  sapux: boolean;
142
136
  /**
@@ -145,7 +139,6 @@ export interface AppOptions {
145
139
  loadReuseLibs: boolean;
146
140
  /**
147
141
  * Enable Typescript support and generate all files in Typescript instead of Javascript
148
- * Enabling Typescript will disable JavaScript codeAssist if also enabled. Typescript code assist will be used instead
149
142
  */
150
143
  typescript: boolean;
151
144
  /**
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "bugs": {
10
10
  "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aui5-application-writer"
11
11
  },
12
- "version": "1.6.8",
12
+ "version": "1.7.1",
13
13
  "license": "Apache-2.0",
14
14
  "main": "dist/index.js",
15
15
  "files": [
@@ -38,7 +38,7 @@
38
38
  "@types/semver": "7.5.2",
39
39
  "fs-extra": "10.0.0",
40
40
  "@sap-ux/eslint-plugin-fiori-tools": "9.0.4",
41
- "@sap-ux/project-access": "1.33.0"
41
+ "@sap-ux/project-access": "1.33.1"
42
42
  },
43
43
  "engines": {
44
44
  "node": ">=20.x"