@nlabs/arkhamjs-middleware-logger 3.26.1 → 3.28.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.
Files changed (2) hide show
  1. package/README.md +2 -7
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -15,14 +15,9 @@ Add console logging for ArkhamJS
15
15
  Using [npm](https://www.npmjs.com/):
16
16
 
17
17
  ```shell
18
- npm install --save @nlabs/arkhamjs-middleware-logger
19
- ```
20
-
21
- or
22
-
23
- ```shell
24
- yarn add @nlabs/arkhamjs-middleware-logger
18
+ npm i --save @nlabs/arkhamjs-middleware-logger
25
19
  ```
26
20
 
27
21
  ## Documentation
22
+
28
23
  For detailed [Documentation](https://arkhamjs.io) and additional options.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nlabs/arkhamjs-middleware-logger",
3
- "version": "3.26.1",
3
+ "version": "3.28.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,29 +30,29 @@
30
30
  "url": "https://github.com/nitrogenlabs/arkhamjs/issues"
31
31
  },
32
32
  "scripts": {
33
- "build": "lex compile -r",
33
+ "build": "lex compile --remove",
34
34
  "clean": "lex clean",
35
35
  "lint": "eslint ./src --ext .ts,.tsx",
36
36
  "prepublishOnly": "npm run build",
37
- "pretest": "npm run lint",
38
37
  "publish:major": "npm version major && npm publish",
39
38
  "publish:minor": "npm version minor && npm publish",
40
39
  "publish:patch": "npm version patch && npm publish",
40
+ "pretest": "lex lint",
41
41
  "test": "lex test",
42
- "update": "lex update -i"
42
+ "update": "npm-check-updates --interactive"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@nlabs/arkhamjs": "^3.23",
46
46
  "lodash": "^4.17"
47
47
  },
48
48
  "devDependencies": {
49
- "@nlabs/arkhamjs": "^3.25.0",
50
- "@types/jest": "^29.5.1",
51
- "@types/node": "^20.2.1",
52
- "eslint": "^8.40.0",
49
+ "@nlabs/arkhamjs": "^3.26.2",
50
+ "@types/jest": "^29.5.14",
51
+ "@types/node": "^22.13.1",
52
+ "eslint": "^9.19.0",
53
53
  "eslint-config-styleguidejs": "^3.2.1",
54
54
  "lodash": "^4.17.21",
55
- "typescript": "^5.0.4"
55
+ "typescript": "^5.7.3"
56
56
  },
57
57
  "gitHead": "fc371e1e28fe0ae35d40d29a217d5f0e990ec32a"
58
58
  }