@ui5/cli 4.0.38 → 5.0.0-alpha.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/CHANGELOG.md +16 -69
- package/README.md +4 -15
- package/lib/init/init.js +1 -1
- package/npm-shrinkwrap.json +2104 -989
- package/package.json +17 -40
- package/CONTRIBUTING.md +0 -3
- package/jsdoc.json +0 -62
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.0",
|
|
4
4
|
"description": "UI5 CLI - CLI",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -26,39 +26,29 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": "^20.
|
|
29
|
+
"node": "^22.20.0 || >=24.0.0",
|
|
30
30
|
"npm": ">= 8"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"test": "npm run lint && npm run
|
|
34
|
-
"test-azure": "npm run coverage-xunit",
|
|
33
|
+
"test": "npm run lint && npm run coverage && npm run depcheck",
|
|
35
34
|
"lint": "eslint ./",
|
|
36
35
|
"unit": "rimraf test/tmp && ava",
|
|
37
36
|
"unit-verbose": "rimraf test/tmp && cross-env UI5_LOG_LVL=verbose ava --verbose --serial",
|
|
38
37
|
"unit-watch": "npm run unit -- --watch",
|
|
39
|
-
"unit-xunit": "rimraf test/tmp && ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\" --tap | tap-xunit --dontUseCommentsAsTestNames=true > test-results.xml",
|
|
40
38
|
"unit-inspect": "cross-env UI5_LOG_LVL=verbose ava debug --break",
|
|
41
39
|
"coverage": "rimraf test/tmp && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\"",
|
|
42
|
-
"coverage-xunit": "nyc --reporter=text --reporter=text-summary --reporter=cobertura npm run unit-xunit",
|
|
43
|
-
"jsdoc": "npm run jsdoc-generate && open-cli jsdocs/index.html",
|
|
44
|
-
"jsdoc-generate": "jsdoc -c ./jsdoc.json -t $(node -p 'path.dirname(require.resolve(\"docdash\"))') ./lib/ || (echo 'Error during JSDoc generation! Check log.' && exit 1)",
|
|
45
|
-
"jsdoc-watch": "npm run jsdoc && chokidar \"./lib/**/*.js\" -c \"npm run jsdoc-generate\"",
|
|
46
40
|
"preversion": "npm test",
|
|
47
41
|
"version": "git-chglog --sort semver --next-tag v$npm_package_version -o CHANGELOG.md v4.0.0.. && git add CHANGELOG.md",
|
|
48
42
|
"prepublishOnly": "git push --follow-tags",
|
|
49
43
|
"release-note": "git-chglog --sort semver -c .chglog/release-config.yml v$npm_package_version | node .chglog/consolidate-changelogs.js",
|
|
50
|
-
"depcheck": "depcheck --ignores @ui5/cli,rimraf
|
|
51
|
-
"check-licenses": "licensee --errors-only"
|
|
44
|
+
"depcheck": "depcheck --ignores @ui5/cli,rimraf,@istanbuljs/esm-loader-hook,@ui5/fs,@ui5/builder"
|
|
52
45
|
},
|
|
53
46
|
"files": [
|
|
54
47
|
"CHANGELOG.md",
|
|
55
|
-
"CONTRIBUTING.md",
|
|
56
|
-
"jsdoc.json",
|
|
57
48
|
"npm-shrinkwrap.json",
|
|
58
49
|
"bin/**",
|
|
59
50
|
"lib/**",
|
|
60
|
-
"LICENSES/**"
|
|
61
|
-
".reuse/**"
|
|
51
|
+
"LICENSES/**"
|
|
62
52
|
],
|
|
63
53
|
"ava": {
|
|
64
54
|
"files": [
|
|
@@ -78,12 +68,9 @@
|
|
|
78
68
|
"text-summary"
|
|
79
69
|
],
|
|
80
70
|
"exclude": [
|
|
81
|
-
".chglog/**",
|
|
82
71
|
"docs/**",
|
|
83
|
-
"jsdocs/**",
|
|
84
72
|
"coverage/**",
|
|
85
|
-
"test/**"
|
|
86
|
-
"jsdoc-plugin.cjs"
|
|
73
|
+
"test/**"
|
|
87
74
|
],
|
|
88
75
|
"check-coverage": true,
|
|
89
76
|
"statements": 80,
|
|
@@ -113,47 +100,37 @@
|
|
|
113
100
|
},
|
|
114
101
|
"repository": {
|
|
115
102
|
"type": "git",
|
|
116
|
-
"url": "git@github.com:
|
|
103
|
+
"url": "git@github.com:UI5/cli.git",
|
|
104
|
+
"directory": "packages/cli"
|
|
117
105
|
},
|
|
118
106
|
"dependencies": {
|
|
119
|
-
"@ui5/builder": "^
|
|
120
|
-
"@ui5/fs": "^
|
|
121
|
-
"@ui5/logger": "^
|
|
122
|
-
"@ui5/project": "^
|
|
123
|
-
"@ui5/server": "^
|
|
107
|
+
"@ui5/builder": "^5.0.0-alpha.0",
|
|
108
|
+
"@ui5/fs": "^5.0.0-alpha.0",
|
|
109
|
+
"@ui5/logger": "^5.0.0-alpha.0",
|
|
110
|
+
"@ui5/project": "^5.0.0-alpha.0",
|
|
111
|
+
"@ui5/server": "^5.0.0-alpha.0",
|
|
124
112
|
"chalk": "^5.6.2",
|
|
125
113
|
"data-with-position": "^0.5.0",
|
|
126
114
|
"import-local": "^3.2.0",
|
|
127
115
|
"js-yaml": "^4.1.1",
|
|
128
116
|
"open": "^10.2.0",
|
|
129
117
|
"pretty-hrtime": "^1.0.3",
|
|
130
|
-
"semver": "^7.7.
|
|
118
|
+
"semver": "^7.7.2",
|
|
131
119
|
"update-notifier": "^7.3.1",
|
|
132
120
|
"yargs": "^17.7.2"
|
|
133
121
|
},
|
|
134
122
|
"devDependencies": {
|
|
135
|
-
"@eslint/js": "^9.8.0",
|
|
136
123
|
"@istanbuljs/esm-loader-hook": "^0.3.0",
|
|
137
124
|
"ava": "^6.4.1",
|
|
138
|
-
"chokidar-cli": "^3.0.0",
|
|
139
125
|
"cross-env": "^7.0.3",
|
|
140
126
|
"depcheck": "^1.4.7",
|
|
141
|
-
"
|
|
142
|
-
"eslint": "^9.39.1",
|
|
143
|
-
"eslint-config-google": "^0.14.0",
|
|
144
|
-
"eslint-plugin-ava": "^15.1.0",
|
|
145
|
-
"eslint-plugin-jsdoc": "^61.4.1",
|
|
127
|
+
"eslint": "^9.36.0",
|
|
146
128
|
"esmock": "^2.7.3",
|
|
147
|
-
"execa": "^9.6.
|
|
148
|
-
"globals": "^16.5.0",
|
|
149
|
-
"jsdoc": "^4.0.5",
|
|
150
|
-
"licensee": "^11.1.1",
|
|
129
|
+
"execa": "^9.6.0",
|
|
151
130
|
"nyc": "^17.1.0",
|
|
152
|
-
"
|
|
153
|
-
"rimraf": "^6.1.2",
|
|
131
|
+
"rimraf": "^6.0.1",
|
|
154
132
|
"sinon": "^21.0.0",
|
|
155
133
|
"strip-ansi": "^7.1.2",
|
|
156
|
-
"tap-xunit": "^2.4.1",
|
|
157
134
|
"testdouble": "^3.20.2"
|
|
158
135
|
}
|
|
159
136
|
}
|
package/CONTRIBUTING.md
DELETED
package/jsdoc.json
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tags": {
|
|
3
|
-
"allowUnknownTags": false
|
|
4
|
-
},
|
|
5
|
-
"source": {
|
|
6
|
-
"include": ["README.md"],
|
|
7
|
-
"includePattern": ".+\\.js$",
|
|
8
|
-
"excludePattern": "(node_modules(\\\\|/))"
|
|
9
|
-
},
|
|
10
|
-
"plugins": [
|
|
11
|
-
"jsdoc-plugin.cjs"
|
|
12
|
-
],
|
|
13
|
-
"opts": {
|
|
14
|
-
"template": "node_modules/docdash/",
|
|
15
|
-
"encoding": "utf8",
|
|
16
|
-
"destination": "jsdocs/",
|
|
17
|
-
"recurse": true,
|
|
18
|
-
"verbose": true,
|
|
19
|
-
"access": "public"
|
|
20
|
-
},
|
|
21
|
-
"templates": {
|
|
22
|
-
"cleverLinks": false,
|
|
23
|
-
"monospaceLinks": false,
|
|
24
|
-
"default": {
|
|
25
|
-
"useLongnameInNav": true
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"openGraph": {
|
|
29
|
-
"title": "UI5 CLI - API Reference",
|
|
30
|
-
"type": "website",
|
|
31
|
-
"image": "https://ui5.github.io/cli/v4/images/UI5_logo_wide.png",
|
|
32
|
-
"site_name": "UI5 CLI - API Reference",
|
|
33
|
-
"url": "https://ui5.github.io/cli/"
|
|
34
|
-
},
|
|
35
|
-
"docdash": {
|
|
36
|
-
"sectionOrder": [
|
|
37
|
-
"Modules",
|
|
38
|
-
"Namespaces",
|
|
39
|
-
"Classes",
|
|
40
|
-
"Externals",
|
|
41
|
-
"Events",
|
|
42
|
-
"Mixins",
|
|
43
|
-
"Tutorials",
|
|
44
|
-
"Interfaces"
|
|
45
|
-
],
|
|
46
|
-
"meta": {
|
|
47
|
-
"title": "UI5 CLI - API Reference - UI5 CLI",
|
|
48
|
-
"description": "UI5 CLI - API Reference - UI5 CLI",
|
|
49
|
-
"keyword": "openui5 sapui5 ui5 build development tool api reference"
|
|
50
|
-
},
|
|
51
|
-
"search": true,
|
|
52
|
-
"wrap": true,
|
|
53
|
-
"menu": {
|
|
54
|
-
"GitHub": {
|
|
55
|
-
"href": "https://github.com/SAP/ui5-cli",
|
|
56
|
-
"target": "_blank",
|
|
57
|
-
"class": "menu-item",
|
|
58
|
-
"id": "github_link"
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|