@versu/cli 0.8.0 → 0.9.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/README.md +7 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -246,7 +246,7 @@ module.exports = {
|
|
|
246
246
|
|
|
247
247
|
## Gradle Project Support
|
|
248
248
|
|
|
249
|
-
Gradle support is provided by the **[@versu/plugin-gradle]
|
|
249
|
+
Gradle support is provided by the **[@versu/plugin-gradle][plugin-gradle]** package.
|
|
250
250
|
|
|
251
251
|
The CLI supports Gradle projects with:
|
|
252
252
|
|
|
@@ -324,7 +324,7 @@ Breaking changes trigger **major** version bumps:
|
|
|
324
324
|
npm install -g @versu/plugin-gradle
|
|
325
325
|
|
|
326
326
|
- name: Version modules
|
|
327
|
-
run: versu
|
|
327
|
+
run: versu run
|
|
328
328
|
```
|
|
329
329
|
|
|
330
330
|
### GitLab CI
|
|
@@ -334,7 +334,7 @@ version:
|
|
|
334
334
|
script:
|
|
335
335
|
- npm install -g @versu/cli
|
|
336
336
|
- npm install -g @versu/plugin-gradle
|
|
337
|
-
- versu
|
|
337
|
+
- versu run
|
|
338
338
|
```
|
|
339
339
|
|
|
340
340
|
### Jenkins
|
|
@@ -344,7 +344,7 @@ stage('Version') {
|
|
|
344
344
|
steps {
|
|
345
345
|
sh 'npm install -g @versu/cli'
|
|
346
346
|
sh 'npm install -g @versu/plugin-gradle'
|
|
347
|
-
sh 'versu
|
|
347
|
+
sh 'versu run'
|
|
348
348
|
}
|
|
349
349
|
}
|
|
350
350
|
```
|
|
@@ -436,8 +436,10 @@ npm publish --workspace packages/cli --access public
|
|
|
436
436
|
|
|
437
437
|
- **[@versu/core](../core)** - Core library for custom integrations
|
|
438
438
|
- **[@versu/action](../action)** - GitHub Actions integration
|
|
439
|
-
- **[@versu/plugin-gradle]
|
|
439
|
+
- **[@versu/plugin-gradle][plugin-gradle]** - Gradle adapter plugin
|
|
440
440
|
|
|
441
441
|
## License
|
|
442
442
|
|
|
443
443
|
MIT License - see [LICENSE](../../LICENSE) for details.
|
|
444
|
+
|
|
445
|
+
[plugin-gradle]: https://github.com/versuhq/plugin-gradle
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versu/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Versu (CLI)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"types": "dist/index.d.ts",
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@oclif/core": "^4.8.0",
|
|
42
|
-
"@versu/core": "^0.
|
|
42
|
+
"@versu/core": "^0.9.0",
|
|
43
43
|
"chalk": "^5.6.2",
|
|
44
44
|
"oclif": "^4.14.0",
|
|
45
45
|
"ora": "^9.3.0"
|