@twin.org/logging-models 0.0.1-next.3 → 0.0.1-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ export declare class MultiLoggingConnector implements ILoggingConnector {
22
22
  */
23
23
  constructor(options: {
24
24
  loggingConnectorTypes: string[];
25
- config?: ILoggingLevelsConfig | undefined;
25
+ config?: ILoggingLevelsConfig;
26
26
  });
27
27
  /**
28
28
  * Log an entry to the connector.
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/logging-models - Changelog
2
2
 
3
- ## v0.0.1-next.3
3
+ ## v0.0.1-next.5
4
4
 
5
5
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/logging-models",
3
- "version": "0.0.1-next.3",
3
+ "version": "0.0.1-next.5",
4
4
  "description": "Models which define the structure of the logging connectors and services",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,37 +13,11 @@
13
13
  "engines": {
14
14
  "node": ">=20.0.0"
15
15
  },
16
- "scripts": {
17
- "clean": "rimraf dist coverage docs/reference",
18
- "build": "tspc",
19
- "test": "vitest --run --config ./vitest.config.ts --no-cache",
20
- "coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
21
- "bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
22
- "bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
23
- "bundle": "npm run bundle:esm && npm run bundle:cjs",
24
- "docs:clean": "rimraf docs/reference",
25
- "docs:generate": "typedoc",
26
- "docs": "npm run docs:clean && npm run docs:generate",
27
- "dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs"
28
- },
29
16
  "dependencies": {
30
17
  "@twin.org/core": "next",
31
18
  "@twin.org/entity": "next",
32
19
  "@twin.org/nameof": "next"
33
20
  },
34
- "devDependencies": {
35
- "@twin.org/nameof-transformer": "next",
36
- "@vitest/coverage-v8": "2.1.1",
37
- "copyfiles": "2.4.1",
38
- "rimraf": "6.0.1",
39
- "rollup": "4.21.3",
40
- "rollup-plugin-typescript2": "0.36.0",
41
- "ts-patch": "3.2.1",
42
- "typedoc": "0.26.7",
43
- "typedoc-plugin-markdown": "4.2.7",
44
- "typescript": "5.6.2",
45
- "vitest": "2.1.1"
46
- },
47
21
  "main": "./dist/cjs/index.cjs",
48
22
  "module": "./dist/esm/index.mjs",
49
23
  "types": "./dist/types/index.d.ts",