@niceties/logger 1.1.2 → 1.1.3

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/appender-utils.d.ts"
2
+ "types": "../dist/appender-utils.d.ts"
3
3
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/console-appender.d.ts"
2
+ "types": "../dist/console-appender.d.ts"
3
3
  }
package/core/package.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/core.d.ts"
2
+ "types": "../dist/core.d.ts"
3
3
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/default-formatting.d.ts"
2
+ "types": "../dist/default-formatting.d.ts"
3
3
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/format-utils.d.ts"
2
+ "types": "../dist/format-utils.d.ts"
3
3
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/global-appender.d.ts"
2
+ "types": "../dist/global-appender.d.ts"
3
3
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.2",
2
+ "version": "1.1.3",
3
3
  "license": "MIT",
4
4
  "name": "@niceties/logger",
5
5
  "author": "Konstantin Shutkin",
@@ -37,7 +37,8 @@
37
37
  "./appender-utils": {
38
38
  "require": "./dist/appender-utils.cjs",
39
39
  "default": "./dist/appender-utils.mjs"
40
- }
40
+ },
41
+ "./package.json": "./package.json"
41
42
  },
42
43
  "main": "./dist/index.cjs",
43
44
  "module": "./dist/index.mjs",
@@ -68,15 +69,12 @@
68
69
  "readme": "REAMDE.md",
69
70
  "description": "Experimental logger/reporter for async tasks.",
70
71
  "scripts": {
71
- "build": "rimraf ./dist && rollup -c",
72
- "dev": "rimraf ./dist && rollup -c -w",
72
+ "build": "pkgbld --umd=core,simple,console-appender,global-appender,appender-utils --preprocess=index",
73
73
  "test": "jest --collectCoverage",
74
74
  "lint": "eslint ./src",
75
75
  "semantic-release": "npx semantic-release"
76
76
  },
77
77
  "devDependencies": {
78
- "@rollup/plugin-commonjs": "21.0.1",
79
- "@rollup/plugin-node-resolve": "13.0.6",
80
78
  "@semantic-release/changelog": "6.0.1",
81
79
  "@semantic-release/commit-analyzer": "9.0.1",
82
80
  "@semantic-release/git": "10.0.1",
@@ -89,18 +87,12 @@
89
87
  "conventional-changelog-angular": "5.0.13",
90
88
  "eslint": "8.5.0",
91
89
  "jest": "27.4.5",
92
- "lodash": "4.17.21",
93
- "rimraf": "3.0.2",
94
- "rollup": "2.62.0",
95
- "rollup-plugin-preprocess": "0.0.4",
96
- "rollup-plugin-terser": "7.0.2",
97
- "rollup-plugin-typescript2": "0.31.1",
98
90
  "semantic-release": "18.0.0",
99
91
  "semantic-release-monorepo": "7.0.5",
100
92
  "ts-jest": "27.1.2",
101
93
  "tslib": "2.3.1",
102
- "typescript": "4.5.x",
103
- "pkgbld": "1.2.0"
94
+ "typescript": "4.6.x",
95
+ "pkgbld": "1.2.1"
104
96
  },
105
97
  "dependencies": {
106
98
  "kleur": "^4.1.4"
@@ -1,3 +1,3 @@
1
1
  {
2
- "types": "../dist/simple.d.ts"
2
+ "types": "../dist/simple.d.ts"
3
3
  }