codsen 0.2.0 → 0.2.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/CHANGELOG.md +2 -6
- package/package.json +11 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,17 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
- drop Node v12 support; minimum version requirement now is v14.18 and above ([c8049e8](https://github.com/codsen/codsen/commit/c8049e82a5844d3f72587740f1cc74e3c9020d22))
|
|
6
|
+
## 0.2.0 (2022-12-01)
|
|
11
7
|
|
|
12
8
|
### BREAKING CHANGES
|
|
13
9
|
|
|
14
10
|
- Minimum supported Node version is v14.18; we're dropping v12 support
|
|
15
11
|
|
|
16
|
-
|
|
12
|
+
## 0.1.0 (2022-08-12)
|
|
17
13
|
|
|
18
14
|
### Features
|
|
19
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codsen",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Codsen CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codsen",
|
|
@@ -27,12 +27,18 @@
|
|
|
27
27
|
"cjs-off": "exit 0",
|
|
28
28
|
"cjs-on": "exit 0",
|
|
29
29
|
"dev": "exit 0",
|
|
30
|
+
"devtest": "npm run test",
|
|
31
|
+
"dts": "exit 0",
|
|
32
|
+
"examples": "exit 0",
|
|
30
33
|
"lect": "node '../../ops/lect/lect.js'",
|
|
31
|
-
"letspublish": "
|
|
34
|
+
"letspublish": "npm publish || :",
|
|
32
35
|
"lint": "eslint . --ext .js --ext .ts --fix",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
+
"perf": "exit 0",
|
|
37
|
+
"prep": "echo 'ready'",
|
|
38
|
+
"prettier": "prettier",
|
|
39
|
+
"prettier:format": "npm run prettier -- --write '**/*.{js,md}' --no-error-on-unmatched-pattern --loglevel 'silent'",
|
|
40
|
+
"pretest": "echo 0",
|
|
41
|
+
"test": "c8 npm run unit && npm run lint",
|
|
36
42
|
"unit": "uvu test"
|
|
37
43
|
},
|
|
38
44
|
"engines": {
|