BREAKING CHANGE(core): switch to esm

This commit is contained in:
Philipp Kunz 2022-07-27 12:00:38 +02:00
parent 057a0a329e
commit 173df91528
14 changed files with 7123 additions and 17838 deletions

View File

@ -12,20 +12,12 @@ stages:
- release - release
- metadata - metadata
before_script:
- npm install -g @shipzone/npmci
# ==================== # ====================
# security stage # security stage
# ==================== # ====================
mirror:
stage: security
script:
- npmci git mirror
only:
- tags
tags:
- lossless
- docker
- notpriv
auditProductionDependencies: auditProductionDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
stage: security stage: security
@ -36,6 +28,7 @@ auditProductionDependencies:
- npmci command npm audit --audit-level=high --only=prod --production - npmci command npm audit --audit-level=high --only=prod --production
tags: tags:
- docker - docker
allow_failure: true
auditDevDependencies: auditDevDependencies:
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
@ -96,10 +89,9 @@ codequality:
only: only:
- tags - tags
script: script:
- npmci command npm install -g tslint typescript - npmci command npm install -g typescript
- npmci npm prepare - npmci npm prepare
- npmci npm install - npmci npm install
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
tags: tags:
- lossless - lossless
- docker - docker
@ -119,11 +111,10 @@ trigger:
pages: pages:
stage: metadata stage: metadata
script: script:
- npmci node install lts - npmci node install stable
- npmci command npm install -g @gitzone/tsdoc
- npmci npm prepare - npmci npm prepare
- npmci npm install - npmci npm install
- npmci command tsdoc - npmci command npm run buildDocs
tags: tags:
- lossless - lossless
- docker - docker

24
.vscode/launch.json vendored
View File

@ -2,28 +2,10 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "current file", "command": "npm test",
"type": "node", "name": "Run npm test",
"request": "launch", "request": "launch",
"args": [ "type": "node-terminal"
"${relativeFile}"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
"runtimeArgs": ["-r", "@gitzone/tsrun"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
} }
] ]
} }

View File

@ -5,7 +5,7 @@
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "pushrocks", "gitscope": "pushrocks",
"gitrepo": "smartmetrics", "gitrepo": "smartmetrics",
"shortDescription": "easy system metrics", "description": "easy system metrics",
"npmPackagename": "@pushrocks/smartmetrics", "npmPackagename": "@pushrocks/smartmetrics",
"license": "MIT", "license": "MIT",
"projectDomain": "push.rocks" "projectDomain": "push.rocks"

24758
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -9,14 +9,15 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"test": "(tstest test/ --web)", "test": "(tstest test/ --web)",
"build": "(tsbuild --web)" "build": "(tsbuild --web)",
"buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.26", "@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^1.0.78", "@gitzone/tsbundle": "^2.0.6",
"@gitzone/tstest": "^1.0.44", "@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^3.2.9", "@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^16.6.1", "@types/node": "^18.6.1",
"tslint": "^6.1.3", "tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0" "tslint-config-prettier": "^1.15.0"
}, },
@ -37,10 +38,11 @@
], ],
"dependencies": { "dependencies": {
"@pushrocks/smartdelay": "^2.0.13", "@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartlog": "^2.0.44", "@pushrocks/smartlog": "^3.0.1",
"@types/pidusage": "^2.0.1", "@types/pidusage": "^2.0.2",
"pidtree": "^0.5.0", "pidtree": "^0.6.0",
"pidusage": "^2.0.21", "pidusage": "^3.0.0",
"prom-client": "^13.2.0" "prom-client": "^14.0.1"
} },
"type": "module"
} }

View File

@ -1,5 +1,3 @@
import * as smartlog from '@pushrocks/smartlog'; import * as smartlog from '@pushrocks/smartlog';
export { export { smartlog };
smartlog
}

View File

@ -1,18 +1,18 @@
import * as plugins from './plugins'; import * as plugins from './plugins.js';
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@pushrocks/tapbundle';
import * as smartmetrics from '../ts/index'; import * as smartmetrics from '../ts/index.js';
let testSmartMetrics: smartmetrics.SmartMetrics; let testSmartMetrics: smartmetrics.SmartMetrics;
tap.test('should create a smartmetrics instance', async () => { tap.test('should create a smartmetrics instance', async () => {
const logger = new plugins.smartlog.Smartlog({ const logger = new plugins.smartlog.Smartlog({
logContext: null, logContext: null,
minimumLogLevel: 'silly' minimumLogLevel: 'silly',
}); });
logger.enableConsole(); logger.enableConsole();
testSmartMetrics = new smartmetrics.SmartMetrics(logger, 'testContainer'); testSmartMetrics = new smartmetrics.SmartMetrics(logger, 'testContainer');
expect(testSmartMetrics).to.be.instanceOf(smartmetrics.SmartMetrics); expect(testSmartMetrics).toBeInstanceOf(smartmetrics.SmartMetrics);
}); });
tap.test('should start smartmetrics', async () => { tap.test('should start smartmetrics', async () => {
@ -20,8 +20,8 @@ tap.test('should start smartmetrics', async () => {
}); });
tap.test('should produce valid metrics', async (tools) => { tap.test('should produce valid metrics', async (tools) => {
console.log('calling .getMetrics from Testfile:') console.log('calling .getMetrics from Testfile:');
console.log(await testSmartMetrics.getMetrics()); console.log(await testSmartMetrics.getMetrics());
}) });
tap.start(); tap.start();

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartmetrics',
version: '2.0.0',
description: 'easy system metrics'
}

View File

@ -1,2 +1,2 @@
export * from './smartmetrics.interfaces'; export * from './smartmetrics.interfaces.js';
export * from './smartmetrics.classes.smartmetrics'; export * from './smartmetrics.classes.smartmetrics.js';

View File

@ -1,5 +1,5 @@
import * as plugins from './smartmetrics.plugins'; import * as plugins from './smartmetrics.plugins.js';
import * as interfaces from './smartmetrics.interfaces'; import * as interfaces from './smartmetrics.interfaces.js';
export class SmartMetrics { export class SmartMetrics {
public started = false; public started = false;
@ -68,7 +68,9 @@ export class SmartMetrics {
memoryUsageBytes += stats[stat].memory; memoryUsageBytes += stats[stat].memory;
} }
let memoryPercentage = Math.round((memoryUsageBytes / 1000000000) * 100 * 100) / 100; let memoryPercentage = Math.round((memoryUsageBytes / 1000000000) * 100 * 100) / 100;
let memoryUsageText = `${memoryPercentage}% | ${this.formatBytes(memoryUsageBytes)} / ${this.formatBytes(1000000000)}`; let memoryUsageText = `${memoryPercentage}% | ${this.formatBytes(
memoryUsageBytes
)} / ${this.formatBytes(1000000000)}`;
console.log(`${cpuUsageText} ||| ${memoryUsageText} `); console.log(`${cpuUsageText} ||| ${memoryUsageText} `);

View File

@ -1,26 +1,17 @@
// node native // node native
import * as os from 'os'; import * as os from 'os';
export { export { os };
os
}
// pushrocks scope // pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay'; import * as smartdelay from '@pushrocks/smartdelay';
import * as smartlog from '@pushrocks/smartlog'; import * as smartlog from '@pushrocks/smartlog';
export { export { smartdelay, smartlog };
smartdelay,
smartlog
}
// third party scope // third party scope
import pidusage from 'pidusage'; import pidusage from 'pidusage';
import pidtree from 'pidtree'; import pidtree from 'pidtree';
import * as promClient from 'prom-client'; import * as promClient from 'prom-client';
export { export { pidusage, pidtree, promClient };
pidusage,
pidtree,
promClient
}

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext",
"esModuleInterop": true
}
}

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}