fix(cli): Set up CLI client definition and registry configuration

This commit is contained in:
Philipp Kunz 2024-10-23 20:09:24 +02:00
parent a218805f27
commit 7cd6bc0e33
5 changed files with 16 additions and 3 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## 2024-10-23 - 1.2.3 - fix(cli)
Set up CLI client definition and registry configuration
- Added a console log message for CLI identification.
- Defined package name for CLI client.
- Configured npm registries for package distribution.
## 2024-10-23 - 1.2.2 - fix(docs)
Updated documentation with clearer usage instructions and examples.

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '1.2.2',
version: '1.2.3',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
}

View File

@ -0,0 +1 @@
console.log('this is the cli client.');

View File

@ -1,3 +1,8 @@
{
"name": "@serve.zone/cli"
"name": "@serve.zone/cli",
"dependencies": [],
"registries": [
"registry.npmjs.org:public",
"verdaccio.lossless.digital:public"
]
}

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/cloudly',
version: '1.2.2',
version: '1.2.3',
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
}