@sap-ux/ui5-application-writer 0.13.0 → 0.13.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.
Files changed (1) hide show
  1. package/package.json +7 -7
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": "0.13.0",
12
+ "version": "0.13.1",
13
13
  "license": "Apache-2.0",
14
14
  "main": "dist/index.js",
15
15
  "files": [
@@ -18,7 +18,7 @@
18
18
  "templates"
19
19
  ],
20
20
  "dependencies": {
21
- "@sap-ux/ui5-config": "0.13.2",
21
+ "@sap-ux/ui5-config": "0.13.3",
22
22
  "ejs": "3.1.7",
23
23
  "mem-fs": "2.1.0",
24
24
  "mem-fs-editor": "9.4.0",
@@ -30,12 +30,13 @@
30
30
  "@types/ejs": "3.1.0",
31
31
  "@types/mem-fs": "1.1.2",
32
32
  "@types/fs-extra": "9.0.13",
33
- "@types/mem-fs-editor": "7.0.0",
33
+ "@types/mem-fs-editor": "7.0.1",
34
+ "@types/semver": "7.3.9",
34
35
  "fs-extra": "10.0.0"
35
36
  },
36
37
  "engines": {
37
- "pnpm": ">=6.26.1",
38
- "node": ">=12.22.5 < 13.0.0 || >= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0"
38
+ "pnpm": ">=6.26.1 < 7.0.0 || >=7.1.0",
39
+ "node": ">=12.22.5 < 13.0.0 || >= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0"
39
40
  },
40
41
  "scripts": {
41
42
  "build": "pnpm clean && tsc",
@@ -48,6 +49,5 @@
48
49
  "watch": "tsc --watch",
49
50
  "link": "pnpm link --global",
50
51
  "unlink": "pnpm unlink --global"
51
- },
52
- "readme": "# @sap-ux/ui5-application-writer\n\nWrites a basic ui5 application\n\n\n## Installation\nNpm\n`npm install --save @sap-ux/ui5-application-writer`\n\nYarn\n`yarn add @sap-ux/ui5-application-writer`\n\nPnpm\n`pnpm add @sap-ux/ui5-application-writer`\n\n## Usage\n```Typescript\nimport { generate } from '@sap-ux/ui5-application-writer';\nimport { join } from 'path';\n\nconst projectDir = join(__dirname, 'testapp1');\nconst fs = await generate(projectDir, {\n app: {\n id: 'testAppId',\n title: 'Test App Title',\n description: 'Test App Description'\n },\n package: {\n name: 'testPackageName'\n }\n});\n\nfs.commit();\n\n```\n\n## Keywords\nSAP Fiori Freestyle\n"
52
+ }
53
53
  }