rslog 1.1.0 → 1.1.1
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/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A tiny, intuitive, type-friendly logger for Node.js.
|
|
4
4
|
|
|
5
|
-
- **Tiny**. [
|
|
5
|
+
- **Tiny**. [1.9kB gzipped](https://bundlephobia.com/package/rslog@1).
|
|
6
6
|
- **Clean**. Zero dependencies.
|
|
7
7
|
- **Intuitive**. Clear log prefix.
|
|
8
8
|
- **Type-friendly**. Written in TypeScript.
|
package/package.json
CHANGED
|
@@ -1,19 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rslog",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"types": "./dist/
|
|
5
|
-
"main": "./dist/
|
|
6
|
-
"module": "./dist/
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"types": "./dist/index.d.ts",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"types": "./dist/
|
|
10
|
-
"import": "./dist/
|
|
11
|
-
"require": "./dist/
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"prepare": "modern build",
|
|
19
|
+
"preview": "node ./preview.mjs",
|
|
20
|
+
"dev": "modern dev",
|
|
21
|
+
"build": "modern build",
|
|
22
|
+
"build:watch": "modern build -w",
|
|
23
|
+
"reset": "rimraf ./**/node_modules",
|
|
24
|
+
"new": "modern new",
|
|
25
|
+
"upgrade": "modern upgrade",
|
|
26
|
+
"test": "modern test"
|
|
27
|
+
},
|
|
17
28
|
"engines": {
|
|
18
29
|
"node": ">=14.17.6"
|
|
19
30
|
},
|
|
@@ -36,15 +47,5 @@
|
|
|
36
47
|
"publishConfig": {
|
|
37
48
|
"access": "public",
|
|
38
49
|
"registry": "https://registry.npmjs.org/"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"preview": "node ./preview.mjs",
|
|
42
|
-
"dev": "modern dev",
|
|
43
|
-
"build": "modern build",
|
|
44
|
-
"build:watch": "modern build -w",
|
|
45
|
-
"reset": "rimraf ./**/node_modules",
|
|
46
|
-
"new": "modern new",
|
|
47
|
-
"upgrade": "modern upgrade",
|
|
48
|
-
"test": "modern test"
|
|
49
50
|
}
|
|
50
51
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|