We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2800655 commit 0e8f0acCopy full SHA for 0e8f0ac
package.json
@@ -3,6 +3,22 @@
3
"version": "3.1.0",
4
"description": "Lightweight logging library for any Node 10+ applications",
5
"main": "index.js",
6
+ "main": "dist/cjs/index.js",
7
+ "types": "dist/cjs/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/esm/index.js",
11
+ "require": "./dist/cjs/index.js"
12
+ },
13
+ "./LambdaLog": {
14
+ "import": "./dist/esm/LambdaLog.js",
15
+ "require": "./dist/cjs/LambdaLog.js"
16
17
+ "./LogMessage": {
18
+ "import": "./dist/esm/LogMessage.js",
19
+ "require": "./dist/cjs/LogMessage.js"
20
+ }
21
22
"scripts": {
23
"test": "jest",
24
"prepare": "is-ci || husky install",
0 commit comments