Compare commits

...

10 Commits

Author SHA1 Message Date
f96de8cdc3 4.1.26 2023-08-09 11:26:22 +02:00
965833916f fix(core): update 2023-08-09 11:26:22 +02:00
81ec1391e3 4.1.25 2023-08-09 11:23:57 +02:00
bbbca44640 fix(core): update 2023-08-09 11:23:56 +02:00
7ba7dc54a1 4.1.24 2023-08-08 23:32:08 +02:00
4f98eeec2a fix(core): update 2023-08-08 23:32:07 +02:00
419a6b9e5f 4.1.23 2023-07-13 16:00:47 +02:00
9c040c34f5 fix(core): update 2023-07-13 16:00:47 +02:00
50d3f2d795 4.1.22 2023-07-12 18:23:32 +02:00
305856b9e1 fix(core): update 2023-07-12 18:23:31 +02:00
5 changed files with 391 additions and 286 deletions

View File

@@ -12,10 +12,10 @@
"projectType": "npm", "projectType": "npm",
"module": { "module": {
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "shipzone", "gitscope": "ship.zone",
"gitrepo": "npmci", "gitrepo": "npmci",
"description": "node and docker in gitlab ci on steroids", "description": "node and docker in gitlab ci on steroids",
"npmPackagename": "@shipzone/npmci", "npmPackagename": "@ship.zone/npmci",
"license": "MIT" "license": "MIT"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "@shipzone/npmci", "name": "@ship.zone/npmci",
"version": "4.1.21", "version": "4.1.26",
"private": false, "private": false,
"description": "node and docker in gitlab ci on steroids", "description": "node and docker in gitlab ci on steroids",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -27,26 +27,26 @@
"homepage": "https://gitlab.com/gitzone/npmci#README", "homepage": "https://gitlab.com/gitzone/npmci#README",
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.66", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42", "@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.74", "@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8", "@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.1" "@types/node": "^20.4.2"
}, },
"dependencies": { "dependencies": {
"@apiglobal/typedrequest": "^2.0.12", "@api.global/typedrequest": "^3.0.1",
"@push.rocks/lik": "^6.0.3", "@push.rocks/lik": "^6.0.3",
"@push.rocks/npmextra": "^3.0.9", "@push.rocks/npmextra": "^3.0.9",
"@push.rocks/projectinfo": "^5.0.1", "@push.rocks/projectinfo": "^5.0.1",
"@push.rocks/qenv": "^5.0.2", "@push.rocks/qenv": "^5.0.2",
"@push.rocks/smartanalytics": "^2.0.15", "@push.rocks/smartanalytics": "^2.0.15",
"@push.rocks/smartcli": "^4.0.6", "@push.rocks/smartcli": "^4.0.6",
"@push.rocks/smartdelay": "^3.0.1", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5", "@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smartfile": "^10.0.28", "@push.rocks/smartfile": "^10.0.28",
"@push.rocks/smartgit": "^3.0.0", "@push.rocks/smartgit": "^3.0.0",
"@push.rocks/smartlog": "^3.0.2", "@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartlog-destination-local": "^9.0.0", "@push.rocks/smartlog-destination-local": "^9.0.0",
"@push.rocks/smartobject": "^1.0.10", "@push.rocks/smartobject": "^1.0.12",
"@push.rocks/smartpath": "^5.0.11", "@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.2", "@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.18", "@push.rocks/smartrequest": "^2.0.18",

647
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@shipzone/npmci', name: '@ship.zone/npmci',
version: '4.1.21', version: '4.1.26',
description: 'node and docker in gitlab ci on steroids' description: 'node and docker in gitlab ci on steroids'
} }

View File

@@ -4,7 +4,7 @@ import * as path from 'path';
export { path }; export { path };
// @apiglobal // @apiglobal
import * as typedrequest from '@apiglobal/typedrequest'; import * as typedrequest from '@api.global/typedrequest';
export { typedrequest }; export { typedrequest };