@vvlad1973/simple-logger 2.0.1 → 2.0.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.2](https://github.com/vvlad1973/vvlad1973-simple-logger/compare/v2.0.1...v2.0.2)
4
+
5
+ ### Fixes
6
+
7
+ - **fix**: Fixed exports of types (2025-05-04) [`b30a2a592dd11af6df352403f48e8b63144ef4af`](https://github.com/vvlad1973/vvlad1973-simple-logger/commit/b30a2a592dd11af6df352403f48e8b63144ef4af)
8
+
3
9
  ## [2.0.1](https://github.com/vvlad1973/vvlad1973-simple-logger/compare/v2.0.0...v2.0.1)
4
10
 
5
11
  ### Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vvlad1973/simple-logger",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -3,5 +3,5 @@ import SimpleLogger from './classes/simple-logger';
3
3
  export default SimpleLogger;
4
4
  export { SimpleLogger };
5
5
 
6
- export * from './types/simple-logger.types.js';
6
+ export * from './types/simple-logger.types';
7
7
  export * from './constants/constants.js';
package/jsdoc.json DELETED
@@ -1,14 +0,0 @@
1
- {
2
- "source": {
3
- "include": ["./src/"],
4
- "includePattern": "\\.(ts)$",
5
- "excludePattern": "(^|\\/|\\\\)node_modules"
6
- },
7
- "plugins": ["node_modules/better-docs/typescript"],
8
- "opts": {
9
- "destination": "./docs",
10
- "recurse": true,
11
- "template": "node_modules/better-docs"
12
- }
13
- }
14
-