thaw 6.0.1 → 6.0.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.
- package/README.md +2 -2
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
The narrow belt for AOP
|
|
1
|
+
The narrow belt for AOP 🥋
|
|
2
2
|
---
|
|
3
3
|
This package provides **narrow-trench** methods for aspect-oriented programming (AOP).
|
|
4
4
|
|
|
@@ -12,7 +12,7 @@ This package provides **narrow-trench** methods for aspect-oriented programming
|
|
|
12
12
|
|
|
13
13
|
## Prerequisites
|
|
14
14
|
|
|
15
|
-
* Node.js `>=
|
|
15
|
+
* Node.js `>=20.0.0`
|
|
16
16
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -7,14 +7,15 @@
|
|
|
7
7
|
"bugs": {
|
|
8
8
|
"url": "https://github.com/bricss/thaw/issues"
|
|
9
9
|
},
|
|
10
|
-
"description": "The narrow belt for AOP
|
|
10
|
+
"description": "The narrow belt for AOP 🥋",
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@babel/cli": "^7.28.6",
|
|
13
13
|
"@babel/core": "^7.29.0",
|
|
14
|
-
"@babel/preset-env": "^7.29.
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"eslint
|
|
14
|
+
"@babel/preset-env": "^7.29.2",
|
|
15
|
+
"@eslint/markdown": "^8.0.0",
|
|
16
|
+
"c8": "^11.0.0",
|
|
17
|
+
"eslint": "^10.1.0",
|
|
18
|
+
"eslint-config-ultra-refined": "^4.1.5",
|
|
18
19
|
"mocha": "^11.7.5"
|
|
19
20
|
},
|
|
20
21
|
"engines": {
|
|
@@ -41,14 +42,14 @@
|
|
|
41
42
|
"url": "git+https://github.com/bricss/thaw.git"
|
|
42
43
|
},
|
|
43
44
|
"scripts": {
|
|
44
|
-
"build": "rm -rf dist && npx babel src --out-dir dist --out-file-extension .cjs",
|
|
45
|
+
"build": "rm -rf dist && npx babel src --out-dir dist --out-file-extension .cjs && sh misc.sh",
|
|
45
46
|
"lint": "eslint --concurrency=auto",
|
|
46
|
-
"prepack": "npm run build &&
|
|
47
|
+
"prepack": "npm run build && npm run lint",
|
|
47
48
|
"pretest": "rm -rf coverage",
|
|
48
49
|
"test": "mocha",
|
|
49
50
|
"test:bail": "mocha --bail",
|
|
50
51
|
"test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
|
|
51
52
|
},
|
|
52
53
|
"type": "module",
|
|
53
|
-
"version": "6.0.
|
|
54
|
+
"version": "6.0.3"
|
|
54
55
|
}
|