@sap/ux-ui5-tooling 1.11.5 → 1.12.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.
- package/CHANGELOG.md +9 -0
- package/dist/cli/index.js +2591 -3211
- package/dist/markdowns/undeploy/undeploy.en.md +1 -0
- package/dist/middlewares/fiori-tools-appreload.js +1 -0
- package/dist/middlewares/fiori-tools-preview.js +1803 -184
- package/dist/middlewares/fiori-tools-proxy.js +1857 -238
- package/dist/middlewares/fiori-tools-servestatic.js +1 -0
- package/dist/tasks/cf-deploy/index.js +1817 -199
- package/dist/tasks/deploy/index.js +2485 -3119
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-ui5-tooling",
|
|
3
3
|
"displayName": "SAP Fiori Tools – UI5 Tooling",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.12.1",
|
|
5
5
|
"description": "SAP Fiori Tools – UI5 Tooling",
|
|
6
6
|
"publisher": "SAPSE",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"bundle": "yarn build:deps && yarn build && npm pack",
|
|
23
23
|
"test": "cross-env SAP_UX_FIORI_TOOLS_DISABLE_TELEMETRY=true jest --maxWorkers=1 --ci --forceExit --detectOpenHandles",
|
|
24
24
|
"test:sequence": "node -r ts-node/register test/sample-project/app/request-sequence.ts",
|
|
25
|
-
"test:integration": "jest --maxWorkers=1 --ci --config='jest.integration.config.js'",
|
|
25
|
+
"test:cpe-integration": "jest --maxWorkers=1 --ci --config='jest.integration.config.js'",
|
|
26
26
|
"lint": "eslint . --ext .ts,.tsx",
|
|
27
27
|
"lint:summary": "eslint . --ext .ts,.tsx -f summary",
|
|
28
28
|
"lint:fix": "eslint --fix",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"madge": "madge --warning --circular --extensions ts ./"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@sap-ux/preview-middleware": "0.11.
|
|
38
|
-
"@ui5/fs": "
|
|
37
|
+
"@sap-ux/preview-middleware": "0.11.20",
|
|
38
|
+
"@ui5/fs": "3.0.4",
|
|
39
39
|
"debug": "4.3.4",
|
|
40
40
|
"express": "4.17.3",
|
|
41
41
|
"livereload": "0.9.1",
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
"keytar": "7.9.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@sap-ux/adp-tooling": "0.
|
|
49
|
+
"@sap-ux/adp-tooling": "0.7.2",
|
|
50
50
|
"@sap-ux/backend-proxy-middleware": "0.7.5",
|
|
51
51
|
"@sap-ux/btp-utils": "0.12.1",
|
|
52
|
-
"@sap-ux/deploy-tooling": "0.11.
|
|
52
|
+
"@sap-ux/deploy-tooling": "0.11.8",
|
|
53
53
|
"@sap-ux/logger": "0.4.0",
|
|
54
|
-
"@sap-ux/project-access": "1.15.
|
|
54
|
+
"@sap-ux/project-access": "1.15.3",
|
|
55
55
|
"@sap-ux/store": "0.4.0",
|
|
56
56
|
"@sap-ux/ui5-config": "0.20.0",
|
|
57
57
|
"@sap-ux/ui5-proxy-middleware": "1.3.0",
|
|
58
|
-
"@sap/ux-app-templates": "1.
|
|
59
|
-
"@sap/ux-cds": "1.
|
|
60
|
-
"@sap/ux-common-utils": "1.
|
|
61
|
-
"@sap/ux-jest-runner-puppeteer": "1.
|
|
62
|
-
"@sap/ux-odata-client": "1.
|
|
63
|
-
"@sap/ux-telemetry": "1.
|
|
64
|
-
"@sap/ux-ui5-info": "1.
|
|
65
|
-
"@sapux/project-spec": "1.
|
|
58
|
+
"@sap/ux-app-templates": "1.12.1",
|
|
59
|
+
"@sap/ux-cds": "1.12.1",
|
|
60
|
+
"@sap/ux-common-utils": "1.12.1",
|
|
61
|
+
"@sap/ux-jest-runner-puppeteer": "1.12.1",
|
|
62
|
+
"@sap/ux-odata-client": "1.12.1",
|
|
63
|
+
"@sap/ux-telemetry": "1.12.1",
|
|
64
|
+
"@sap/ux-ui5-info": "1.12.1",
|
|
65
|
+
"@sapux/project-spec": "1.12.1",
|
|
66
66
|
"@types/expect-puppeteer": "4.4.5",
|
|
67
67
|
"@types/jest-dev-server": "5.0.0",
|
|
68
68
|
"@types/marked": "4.0.1",
|