@sap-ux/odata-service-writer 0.12.1 → 0.12.2
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 +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%3Aodata-service-writer"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.12.
|
|
12
|
+
"version": "0.12.2",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"files": [
|
|
@@ -22,20 +22,21 @@
|
|
|
22
22
|
"i18next": "20.3.2",
|
|
23
23
|
"mem-fs": "2.1.0",
|
|
24
24
|
"mem-fs-editor": "9.4.0",
|
|
25
|
-
"@sap-ux/ui5-config": "0.13.
|
|
25
|
+
"@sap-ux/ui5-config": "0.13.3",
|
|
26
26
|
"prettify-xml": "1.2.0",
|
|
27
27
|
"fast-xml-parser": "4.0.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/ejs": "3.1.0",
|
|
31
31
|
"@types/fs-extra": "9.0.13",
|
|
32
|
-
"@types/mem-fs-editor": "7.0.
|
|
32
|
+
"@types/mem-fs-editor": "7.0.1",
|
|
33
|
+
"@types/mem-fs": "1.1.2",
|
|
33
34
|
"fs-extra": "10.0.0",
|
|
34
35
|
"lodash": "4.17.21"
|
|
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",
|
|
@@ -49,6 +50,5 @@
|
|
|
49
50
|
"watch": "tsc --watch",
|
|
50
51
|
"link": "pnpm link --global",
|
|
51
52
|
"unlink": "pnpm unlink --global"
|
|
52
|
-
}
|
|
53
|
-
"readme": "# @sap-ux/odata-service-writer\n\nWrites the odata service related file updates to an existing UI5 project specified by the base path.\n\n\n## Installation\nNpm\n`npm install --save @sap-ux/odata-service-writer`\n\nYarn\n`yarn add @sap-ux/odata-service-writer`\n\nPnpm\n`pnpm add @sap-ux/odata-service-writer`\n\n## Usage\n\n```Typescript\nimport { OdataVersion, OdataService, generate } from '@sap-ux/odata-service-writer';\nimport { create, Editor } from 'mem-fs-editor';\nimport { create as createStorage } from 'mem-fs';\n\n...\n\nfs = create(createStorage()); // Or use fs from Yeoman\n\n const config: OdataService = {\n url: 'http://localhost',\n path: '/sap/odata/testme',\n version: OdataVersion.v4,\n destination: {\n name: 'test'\n }\n };\nconst testDir = '/tmp';\n\nawait generate(testDir, config, fs);\n \n```\n\n## Keywords\nSAP Fiori Freestyle\n"
|
|
53
|
+
}
|
|
54
54
|
}
|