@ui5/cli 5.0.0-alpha.1 → 5.0.0-alpha.3
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 +36 -0
- package/bin/ui5.cjs +12 -1
- package/lib/cli/cli.js +1 -3
- package/lib/utils/profile.js +83 -0
- package/npm-shrinkwrap.json +1311 -1956
- package/package.json +8 -62
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/cli",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.3",
|
|
4
4
|
"description": "UI5 CLI - CLI",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -30,18 +30,13 @@
|
|
|
30
30
|
"npm": ">= 8"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"test": "npm run lint && npm run coverage
|
|
33
|
+
"test": "npm run lint && npm run coverage",
|
|
34
34
|
"lint": "eslint ./",
|
|
35
35
|
"unit": "rimraf test/tmp && ava",
|
|
36
36
|
"unit-verbose": "rimraf test/tmp && cross-env UI5_LOG_LVL=verbose ava --verbose --serial",
|
|
37
37
|
"unit-watch": "npm run unit -- --watch",
|
|
38
38
|
"unit-inspect": "cross-env UI5_LOG_LVL=verbose ava debug --break",
|
|
39
|
-
"coverage": "rimraf test/tmp && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\""
|
|
40
|
-
"preversion": "npm test",
|
|
41
|
-
"version": "git-chglog --sort semver --next-tag v$npm_package_version -o CHANGELOG.md v4.0.0.. && git add CHANGELOG.md",
|
|
42
|
-
"prepublishOnly": "git push --follow-tags",
|
|
43
|
-
"release-note": "git-chglog --sort semver -c .chglog/release-config.yml v$npm_package_version | node .chglog/consolidate-changelogs.js",
|
|
44
|
-
"depcheck": "depcheck --ignores @ui5/cli,rimraf,@istanbuljs/esm-loader-hook,@ui5/fs,@ui5/builder"
|
|
39
|
+
"coverage": "rimraf test/tmp && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\""
|
|
45
40
|
},
|
|
46
41
|
"files": [
|
|
47
42
|
"CHANGELOG.md",
|
|
@@ -50,65 +45,17 @@
|
|
|
50
45
|
"lib/**",
|
|
51
46
|
"LICENSES/**"
|
|
52
47
|
],
|
|
53
|
-
"ava": {
|
|
54
|
-
"files": [
|
|
55
|
-
"test/bin/**/*.js",
|
|
56
|
-
"test/lib/**/*.js"
|
|
57
|
-
],
|
|
58
|
-
"nodeArguments": [
|
|
59
|
-
"--loader=esmock",
|
|
60
|
-
"--no-warnings"
|
|
61
|
-
],
|
|
62
|
-
"workerThreads": false
|
|
63
|
-
},
|
|
64
|
-
"nyc": {
|
|
65
|
-
"reporter": [
|
|
66
|
-
"lcov",
|
|
67
|
-
"text",
|
|
68
|
-
"text-summary"
|
|
69
|
-
],
|
|
70
|
-
"exclude": [
|
|
71
|
-
"docs/**",
|
|
72
|
-
"coverage/**",
|
|
73
|
-
"test/**"
|
|
74
|
-
],
|
|
75
|
-
"check-coverage": true,
|
|
76
|
-
"statements": 80,
|
|
77
|
-
"branches": 75,
|
|
78
|
-
"functions": 75,
|
|
79
|
-
"lines": 80,
|
|
80
|
-
"watermarks": {
|
|
81
|
-
"statements": [
|
|
82
|
-
70,
|
|
83
|
-
90
|
|
84
|
-
],
|
|
85
|
-
"branches": [
|
|
86
|
-
70,
|
|
87
|
-
90
|
|
88
|
-
],
|
|
89
|
-
"functions": [
|
|
90
|
-
70,
|
|
91
|
-
90
|
|
92
|
-
],
|
|
93
|
-
"lines": [
|
|
94
|
-
70,
|
|
95
|
-
90
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
"cache": true,
|
|
99
|
-
"all": true
|
|
100
|
-
},
|
|
101
48
|
"repository": {
|
|
102
49
|
"type": "git",
|
|
103
50
|
"url": "git+ssh://git@github.com/UI5/cli.git",
|
|
104
51
|
"directory": "packages/cli"
|
|
105
52
|
},
|
|
106
53
|
"dependencies": {
|
|
107
|
-
"@ui5/builder": "^5.0.0-alpha.
|
|
108
|
-
"@ui5/fs": "^5.0.0-alpha.
|
|
109
|
-
"@ui5/logger": "^5.0.0-alpha.
|
|
110
|
-
"@ui5/project": "^5.0.0-alpha.
|
|
111
|
-
"@ui5/server": "^5.0.0-alpha.
|
|
54
|
+
"@ui5/builder": "^5.0.0-alpha.3",
|
|
55
|
+
"@ui5/fs": "^5.0.0-alpha.3",
|
|
56
|
+
"@ui5/logger": "^5.0.0-alpha.3",
|
|
57
|
+
"@ui5/project": "^5.0.0-alpha.3",
|
|
58
|
+
"@ui5/server": "^5.0.0-alpha.3",
|
|
112
59
|
"chalk": "^5.6.2",
|
|
113
60
|
"data-with-position": "^0.5.0",
|
|
114
61
|
"import-local": "^3.2.0",
|
|
@@ -123,7 +70,6 @@
|
|
|
123
70
|
"@istanbuljs/esm-loader-hook": "^0.3.0",
|
|
124
71
|
"ava": "^6.4.1",
|
|
125
72
|
"cross-env": "^7.0.3",
|
|
126
|
-
"depcheck": "^1.4.7",
|
|
127
73
|
"eslint": "^9.36.0",
|
|
128
74
|
"esmock": "^2.7.3",
|
|
129
75
|
"execa": "^9.6.0",
|