@sap-ux/fe-fpm-writer 0.6.0 → 0.7.0
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/package.json +10 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/fe-fpm-writer",
|
|
3
3
|
"description": "SAP Fiori elements flexible programming model writer",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -18,19 +18,22 @@
|
|
|
18
18
|
"templates"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"ejs": "3.1.
|
|
21
|
+
"ejs": "3.1.7",
|
|
22
22
|
"mem-fs": "2.1.0",
|
|
23
|
-
"mem-fs-editor": "9.
|
|
23
|
+
"mem-fs-editor": "9.4.0",
|
|
24
24
|
"xml-js": "1.6.11",
|
|
25
25
|
"semver": "7.3.5"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/ejs": "3.1.0",
|
|
29
|
-
"@
|
|
29
|
+
"@types/semver": "7.3.9",
|
|
30
|
+
"@types/mem-fs-editor": "7.0.1",
|
|
31
|
+
"@types/mem-fs": "1.1.2",
|
|
32
|
+
"@sap-ux/ui5-config": "0.14.0"
|
|
30
33
|
},
|
|
31
34
|
"engines": {
|
|
32
|
-
"pnpm": ">=6.26.1",
|
|
33
|
-
"node": ">=
|
|
35
|
+
"pnpm": ">=6.26.1 < 7.0.0 || >=7.1.0",
|
|
36
|
+
"node": ">= 14.16.0 < 15.0.0 || >=16.1.0 < 17.0.0 || >=18.0.0 < 19.0.0"
|
|
34
37
|
},
|
|
35
38
|
"scripts": {
|
|
36
39
|
"build": "pnpm clean && tsc",
|
|
@@ -40,6 +43,5 @@
|
|
|
40
43
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
41
44
|
"test": "jest --ci --forceExit --detectOpenHandles --colors",
|
|
42
45
|
"watch": "tsc --watch"
|
|
43
|
-
}
|
|
44
|
-
"readme": "# @sap-ux/fe-fpm-writer\n\nGenerates elements defined in the Fiori elements for OData v4 flexible programming model into Fiori elements applications\n\n\n## Installation\nNpm\n`npm install --save @sap-ux/fe-fpm-writer`\n\nYarn\n`yarn add @sap-ux/fe-fpm-writer`\n\nPnpm\n`pnpm add @sap-ux/fe-fpm-writer`\n\n## Usage\n```Typescript\nimport { generate } from '@sap-ux/fe-fpm-writer';\nimport { join } from 'path';\n\nconst projectDir = join(__dirname, 'test/test-input/basic-lrop');\nconst fs = await generateCustomPage(\n targetPath,\n {\n name: 'MyCustomPage',\n entity: 'Booking',\n navigation: {\n sourceEntity: 'Travel',\n sourcePage: 'TravelObjectPage',\n navEntity: '_Booking'\n }\n});\n\nfs.commit();\n\n```\nSee more complex example in [`/test/integration/index.test.ts`](./test/integration/index.test.ts)\n## Keywords\nSAP Fiori elements\n"
|
|
46
|
+
}
|
|
45
47
|
}
|