Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
5aa136b8d9 | |||
240516520a | |||
4e1f9464fe | |||
41f9f93d1c |
15
changelog.md
15
changelog.md
@ -1,5 +1,20 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-10-21 - 1.2.0 - feat(cli)
|
||||||
|
Add tspublish.json for CLI client and interfaces
|
||||||
|
|
||||||
|
- Added registration details for publishing CLI client (@serve.zone/cli)
|
||||||
|
- Specified npm and custom registries in the tspublish.json for better publish control
|
||||||
|
- Updated dependency version for @git.zone/tspublish in package.json
|
||||||
|
|
||||||
|
## 2024-10-21 - 1.1.9 - fix(build)
|
||||||
|
Update Node types and other dependencies, add tspublish.json for api client
|
||||||
|
|
||||||
|
- Updated Node types devDependency to version ^22.7.7 from ^22.7.5.
|
||||||
|
- Updated smartbucket dependency to version ^3.0.23 from ^3.0.22.
|
||||||
|
- Added tspublish configuration file to the api client.
|
||||||
|
- Fixed the npm publish script in package.json.
|
||||||
|
|
||||||
## 2024-10-16 - 1.1.8 - fix(big fix upgrade)
|
## 2024-10-16 - 1.1.8 - fix(big fix upgrade)
|
||||||
fix: update dependency versions and address type errors
|
fix: update dependency versions and address type errors
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/cloudly",
|
"name": "@serve.zone/cloudly",
|
||||||
"version": "1.1.8",
|
"version": "1.2.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.",
|
"description": "A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -18,15 +18,16 @@
|
|||||||
"start": "node cli.js",
|
"start": "node cli.js",
|
||||||
"startTs": "node cli.ts.js",
|
"startTs": "node cli.ts.js",
|
||||||
"watch": "tswatch website",
|
"watch": "tswatch website",
|
||||||
"localPublish": "gitzone commit"
|
"publish": "tspublish"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.84",
|
"@git.zone/tsbuild": "^2.1.84",
|
||||||
"@git.zone/tsbundle": "^2.0.15",
|
"@git.zone/tsbundle": "^2.0.15",
|
||||||
|
"@git.zone/tspublish": "^1.3.0",
|
||||||
"@git.zone/tstest": "^1.0.90",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@git.zone/tswatch": "^2.0.23",
|
"@git.zone/tswatch": "^2.0.23",
|
||||||
"@push.rocks/tapbundle": "^5.3.0",
|
"@push.rocks/tapbundle": "^5.3.0",
|
||||||
"@types/node": "^22.7.5"
|
"@types/node": "^22.7.7"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@api.global/typedrequest": "3.1.10",
|
"@api.global/typedrequest": "3.1.10",
|
||||||
@ -45,7 +46,7 @@
|
|||||||
"@push.rocks/projectinfo": "^5.0.1",
|
"@push.rocks/projectinfo": "^5.0.1",
|
||||||
"@push.rocks/qenv": "^6.0.5",
|
"@push.rocks/qenv": "^6.0.5",
|
||||||
"@push.rocks/smartacme": "^5.0.0",
|
"@push.rocks/smartacme": "^5.0.0",
|
||||||
"@push.rocks/smartbucket": "^3.0.22",
|
"@push.rocks/smartbucket": "^3.0.23",
|
||||||
"@push.rocks/smartcli": "^4.0.11",
|
"@push.rocks/smartcli": "^4.0.11",
|
||||||
"@push.rocks/smartclickhouse": "^2.0.17",
|
"@push.rocks/smartclickhouse": "^2.0.17",
|
||||||
"@push.rocks/smartdata": "^5.2.10",
|
"@push.rocks/smartdata": "^5.2.10",
|
||||||
|
1854
pnpm-lock.yaml
generated
1854
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '1.1.8',
|
version: '1.2.0',
|
||||||
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
|
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
|
||||||
}
|
}
|
||||||
|
16
ts_apiclient/tspublish.json
Normal file
16
ts_apiclient/tspublish.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"name": "@serve.zone/api",
|
||||||
|
"dependencies": [
|
||||||
|
"@serve.zone/interfaces",
|
||||||
|
"@push.rocks/smartpromise",
|
||||||
|
"@push.rocks/smartrx",
|
||||||
|
"@push.rocks/smartstream",
|
||||||
|
"@api.global/typedrequest",
|
||||||
|
"@api.global/typedsocket",
|
||||||
|
"@tsclass/tsclass"
|
||||||
|
],
|
||||||
|
"registries": [
|
||||||
|
"registry.npmjs.org:public",
|
||||||
|
"verdaccio.lossless.digital:public"
|
||||||
|
]
|
||||||
|
}
|
3
ts_cliclient/tspublish.json
Normal file
3
ts_cliclient/tspublish.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"name": "@serve.zone/cli"
|
||||||
|
}
|
10
ts_interfaces/tspublish.json
Normal file
10
ts_interfaces/tspublish.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "@serve.zone/interfaces",
|
||||||
|
"dependencies": [
|
||||||
|
"@tsclass/tsclass"
|
||||||
|
],
|
||||||
|
"registries": [
|
||||||
|
"registry.npmjs.org:public",
|
||||||
|
"verdaccio.lossless.digital:public"
|
||||||
|
]
|
||||||
|
}
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/cloudly',
|
name: '@serve.zone/cloudly',
|
||||||
version: '1.1.8',
|
version: '1.2.0',
|
||||||
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
|
description: 'A comprehensive multi-cloud manager leveraging Docker Swarmkit to orchestrate containerized applications across various cloud services and provide robust configuration and API integration.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user