codsen 0.1.11 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/package.json +12 -6
package/CHANGELOG.md CHANGED
@@ -3,7 +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
- # 0.1.0 (2022-08-12)
6
+ ## 0.2.0 (2022-12-01)
7
+
8
+ ### BREAKING CHANGES
9
+
10
+ - Minimum supported Node version is v14.18; we're dropping v12 support
11
+
12
+ ## 0.1.0 (2022-08-12)
7
13
 
8
14
  ### Features
9
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codsen",
3
- "version": "0.1.11",
3
+ "version": "0.2.1",
4
4
  "description": "Codsen CLI",
5
5
  "keywords": [
6
6
  "codsen",
@@ -27,16 +27,22 @@
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": "yarn publish || :",
34
+ "letspublish": "npm publish || :",
32
35
  "lint": "eslint . --ext .js --ext .ts --fix",
33
- "prepare": "echo 'ready'",
34
- "prettier:format": "prettier --write '**/*.{js,md}' --no-error-on-unmatched-pattern",
35
- "test": "c8 yarn run unit && yarn run lint",
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": {
39
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
45
+ "node": ">=14.18.0"
40
46
  },
41
47
  "c8": {
42
48
  "check-coverage": false,