Skip to content

Commit 07d33ef

Browse files
authored
release: @flex-development/log@4.0.0-dev.0 (#10)
1 parent 8bc6191 commit 07d33ef

File tree

5 files changed

+53
-7
lines changed

5 files changed

+53
-7
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
PAT_GPR: ${{ secrets.PAT_GPR_ADMIN }}
2020
strategy:
2121
matrix:
22-
node: [12.x, 14.x, 16.x]
22+
node: [14.x, 16.x]
2323
steps:
2424
- id: checkout
2525
name: Checkout branch

.github/workflows/integrity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
PAT_GPR: ${{ secrets.PAT_GPR_ADMIN }}
3535
strategy:
3636
matrix:
37-
node: [12.x, 14.x, 16.x]
37+
node: [14.x, 16.x]
3838
steps:
3939
- id: checkout
4040
name: Checkout branch

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,51 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [4.0.0-dev.0](https://github.com/flex-development/log/compare/log@3.0.0-dev.0...log@4.0.0-dev.0) (2021-10-11)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* target `node>=14.18.0`
11+
* use `.cjs` and `.mjs` extensions, drop `.js`
12+
* `log.ts` -> `main.ts`
13+
14+
### :bug: Fixes
15+
16+
* `Error: Cannot find module ../loaders/env.cjs` ([512eb0f](https://github.com/flex-development/log/commit/512eb0f8acc2785ada7a58b9f3a12c611e2599a3))
17+
18+
19+
### :recycle: Code Improvements
20+
21+
* `log.ts` -> `main.ts` ([b4f9756](https://github.com/flex-development/log/commit/b4f9756dc2c2c7ba4a8bdedd5d93118ed58a5a5c))
22+
23+
24+
### :hammer: Build
25+
26+
* **deps-dev:** add `eslint-plugin-markdownlint@0.2.2` ([55c6e3c](https://github.com/flex-development/log/commit/55c6e3c5dbb22ea4a2e891b2791b649de8159d68))
27+
* **deps-dev:** interactive upgrades ([7ad9d8e](https://github.com/flex-development/log/commit/7ad9d8e03c838102cb240dd389a6debbc7dd06d1))
28+
* **deps-dev:** remove unused lodash deps ([07919bf](https://github.com/flex-development/log/commit/07919bf32c71437929ad5d1450b39133d315868a))
29+
* target `node>=14.18.0` ([eaafd89](https://github.com/flex-development/log/commit/eaafd89ff09b96b2fc631ba9e16e4d94deb20f65))
30+
* use `.cjs` and `.mjs` extensions, drop `.js` ([8bc6191](https://github.com/flex-development/log/commit/8bc61917dfea8b763af03c1c4e887aff35848f9a))
31+
32+
33+
### :pencil2: Housekeeping
34+
35+
* add `.eslintrc.base.cjs` ([3ca17b7](https://github.com/flex-development/log/commit/3ca17b76b8f14a93acc8ee164dca8cba06da0be6))
36+
* add husky hooks to prettier overrides ([0bd2783](https://github.com/flex-development/log/commit/0bd2783ccf0d1730bb501c0b098e17cd337cae62))
37+
* **github:** add commit scopes - `cjs`, `config`, `esm`, `hybrid`, `utils` ([8212043](https://github.com/flex-development/log/commit/8212043c82760772be5c4176691577d2e0abe9b6))
38+
* **github:** add labels - `scope:ci`, `scope:tools`, `scope:yarn` ([5ea181c](https://github.com/flex-development/log/commit/5ea181ce7c411a8b8af5fb076c4f86caffb43e60))
39+
* **github:** drop `log` commit scope ([92abec0](https://github.com/flex-development/log/commit/92abec08d41516f639285d5023ba62f9c066a880))
40+
* **github:** update `scope:scripts` label description ([c994243](https://github.com/flex-development/log/commit/c9942430ce80ac177d29be522bee48eca354c079))
41+
* **release:** set package version ([b5260d9](https://github.com/flex-development/log/commit/b5260d94fdfccad168816a5af21e41e6e008afe3))
42+
* set `typescript.tsdk` ([80e35b6](https://github.com/flex-development/log/commit/80e35b62ffc7dc49a4f5bc0e91e318a41ad8089c))
43+
* toggle `--experimental-json-modules` flag usage ([84543f7](https://github.com/flex-development/log/commit/84543f7d24b2210de5227c880389bac4a61708b3))
44+
* **tools:** fix typo in jest script ([218f4ba](https://github.com/flex-development/log/commit/218f4ba9bd74117e19be5a4156eb14b4e75fb0f3))
45+
* **tools:** update `loadenv` invocations ([7afab48](https://github.com/flex-development/log/commit/7afab4827120bc250da31e8085358f753319daf5))
46+
* update eslint + prettier ignore patterns ([fe7f9d4](https://github.com/flex-development/log/commit/fe7f9d4d735bbba1f229b7cf1bfe87587c4a8e29))
47+
* update eslint extensions ([f3dae34](https://github.com/flex-development/log/commit/f3dae349797d42b42fcaf7c359b6b39a77880c98))
48+
* use husky v7 ([f660aa1](https://github.com/flex-development/log/commit/f660aa156cef73863cd52d14b23714d1b19dfce1))
49+
550
## [3.0.0-dev.0](https://github.com/flex-development/log/compare/log@2.0.0...log@3.0.0-dev.0) (2021-10-03)
651

752

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flex-development/log",
33
"description": "Style logs for the console or terminal",
4-
"version": "3.0.0-dev.0",
4+
"version": "4.0.0-dev.0",
55
"keywords": [
66
"log",
77
"log-util",
@@ -191,7 +191,7 @@
191191
}
192192
},
193193
"engines": {
194-
"node": ">=12.20.0",
194+
"node": ">=14.18.0",
195195
"yarn": "3.0.2"
196196
},
197197
"env": {

tsconfig.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
// See: https://github.com/tsconfig/bases/blob/main/bases/node14.json
23
"compilerOptions": {
34
"allowJs": true,
45
"allowUnreachableCode": false,
56
"baseUrl": "./",
67
"checkJs": false,
78
"esModuleInterop": true,
89
"forceConsistentCasingInFileNames": true,
9-
"lib": ["es2019", "es2020.bigint", "es2020.promise", "es2020.string"],
10+
"lib": ["es2020"],
1011
"module": "es2020",
1112
"moduleResolution": "node",
1213
"noEmit": true,
@@ -34,8 +35,8 @@
3435
"resolveJsonModule": true,
3536
"rootDir": "./",
3637
"strict": true,
37-
// Node.js 12
38-
"target": "es2019"
38+
// Node.js 14
39+
"target": "es2020"
3940
},
4041
"exclude": ["**/node_modules", "./build", "./cjs", "./esm", "./types"],
4142
"files": ["typings/jest.d.ts"],

0 commit comments

Comments
 (0)