fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-18 01:32:05 +02:00
parent 7e8c5e23ef
commit 11aef2d170
8 changed files with 5631 additions and 3834 deletions

View File

@ -1,139 +0,0 @@
# gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
cache:
paths:
- .npmci_cache/
key: '$CI_BUILD_STAGE'
stages:
- security
- test
- release
- metadata
before_script:
- npm install -g @shipzone/npmci
# ====================
# security stage
# ====================
mirror:
stage: security
script:
- npmci git mirror
only:
- tags
tags:
- lossless
- docker
- notpriv
auditProductionDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security
script:
- npmci npm prepare
- npmci command npm install --production --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high --only=prod --production
tags:
- docker
allow_failure: true
auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security
script:
- npmci npm prepare
- npmci command npm install --ignore-scripts
- npmci command npm config set registry https://registry.npmjs.org
- npmci command npm audit --audit-level=high --only=dev
tags:
- docker
allow_failure: true
# ====================
# test stage
# ====================
testStable:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
testBuild:
stage: test
script:
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci command npm run build
coverage: /\d+.?\d+?\%\s*coverage/
tags:
- docker
release:
stage: release
script:
- npmci node install stable
- npmci npm publish
only:
- tags
tags:
- lossless
- docker
- notpriv
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
allow_failure: true
only:
- tags
script:
- npmci command npm install -g typescript
- npmci npm prepare
- npmci npm install
tags:
- lossless
- docker
- priv
trigger:
stage: metadata
script:
- npmci trigger
only:
- tags
tags:
- lossless
- docker
- notpriv
pages:
stage: metadata
script:
- npmci node install stable
- npmci npm prepare
- npmci npm install
- npmci command npm run buildDocs
tags:
- lossless
- docker
- notpriv
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
allow_failure: true

1074
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,18 +14,18 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/smartlog": "^3.0.6",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.12"
},
"dependencies": {
"@pushrocks/smarthash": "^3.0.1",
"@pushrocks/smartlog-interfaces": "^2.0.23",
"@pushrocks/webrequest": "^3.0.12"
"@push.rocks/smarthash": "^3.0.2",
"@push.rocks/smartlog-interfaces": "^3.0.0",
"@push.rocks/webrequest": "^3.0.28"
},
"files": [
"ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
import { Qenv } from '@pushrocks/qenv';
import * as smartlog from '@pushrocks/smartlog';
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
import { Qenv } from '@push.rocks/qenv';
import * as smartlog from '@push.rocks/smartlog';
const testQenv = new Qenv('./', './.nogit/');
import * as smartlogDestinationReceiver from '../ts/index.js';
@ -35,4 +35,4 @@ tap.test('should send a valid message', async () => {
});
});
tap.start();
export default tap.start();

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartlog-destination-receiver',
version: '2.0.4',
description: 'a smartlog destination for smartlog-receiver'
name: '@push.rocks/smartlog-destination-receiver',
version: '2.0.5',
description: 'A package providing a destination handler for smartlog logging packages'
}

View File

@ -1,9 +1,9 @@
import * as plugins from './smartlog-destination-receiver.plugins.js';
import {
ILogDestination,
ILogPackageAuthenticated,
ILogPackage,
} from '@pushrocks/smartlog-interfaces';
type ILogDestination,
type ILogPackageAuthenticated,
type ILogPackage,
} from '@push.rocks/smartlog-interfaces';
export interface ISmartlogDestinationReceiverConstructorOptions {
passphrase: string;

View File

@ -1,5 +1,5 @@
import * as smarthash from '@pushrocks/smarthash';
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
import * as webrequest from '@pushrocks/webrequest';
import * as smarthash from '@push.rocks/smarthash';
import * as smartlogInterfaces from '@push.rocks/smartlog-interfaces';
import * as webrequest from '@push.rocks/webrequest';
export { smarthash, smartlogInterfaces, webrequest };