node-ansi-logger 3.3.0-dev-20260618-3a2b91c → 3.3.0

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 CHANGED
@@ -22,7 +22,7 @@ If you like this project and find it useful, please consider giving it a star on
22
22
 
23
23
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
24
24
 
25
- ## [3.3.0] - Dev branch
25
+ ## [3.3.0] - 2026-06-20
26
26
 
27
27
  ### Added
28
28
 
@@ -38,18 +38,16 @@ If you like this project and find it useful, please consider giving it a star on
38
38
  ### Changed
39
39
 
40
40
  - [package]: Update dependencies.
41
- - [package]: Bump package to `automator` v.3.1.12 and the new toolchain.
41
+ - [package]: Bump package to `automator` v.3.1.12 and the [new toolchain](README.md#repository-setup).
42
42
  - [package]: Bump `typescript` to v.6.0.3.
43
-
44
- - [package]: Bump `.devcontainer/devcontainer.json` config to v.1.0.3.
43
+ - [package]: Bump `.devcontainer/devcontainer.json` config to v.1.0.4.
45
44
  - [package]: Bump `.vscode/settings.json` config to v.1.0.3.
46
- - [package]: Bump `.vscode/extensions.json` config to v.1.0.3.
47
- - [package]: Bump `.vscode/tasks.json` config to v.1.0.1.
45
+ - [package]: Bump `.vscode/extensions.json` config to v.1.0.4.
46
+ - [package]: Bump `.vscode/tasks.json` config to v.1.0.3.
48
47
  - [workflows]: Bump `build.yml` workflow to v.2.0.5.
49
48
  - [workflows]: Bump `codecov.yml` workflow to v.2.0.5.
50
49
  - [workflows]: Bump `publish.yml` workflow to v.2.0.5.
51
50
  - [workflows]: Bump `codeql.yml` workflow to v.2.0.0.
52
-
53
51
  - [package]: Refactor `scripts`.
54
52
  - [package]: Add package script `typecheck`.
55
53
  - [package]: Add Node.js 26 to package `engines` field.
@@ -57,10 +55,12 @@ If you like this project and find it useful, please consider giving it a star on
57
55
  - [devcontainer]: Add `Claude Code VS Code extension` to Dev Container.
58
56
  - [devcontainer]: Add `Codex VS Code extension` to Dev Container.
59
57
  - [devcontainer]: Add `Jest / Vitest Runner VS Code extension` to Dev Container.
58
+ - [devcontainer]: Add `Vitest VS Code extension` to Dev Container.
60
59
  - [agent]: Add `.github\copilot-instructions.md` for Copilot.
61
60
  - [agent]: Add `CLAUDE.md` for Claude.
62
- - [agent]: Add `AGENTS.md` for Codex.
63
- - [agent]: Add `.codex` config for Codex.
61
+ - [codex]: Add `AGENTS.md` for Codex.
62
+ - [codex]: Add `.codex\config.toml` configuration for Codex.
63
+ - [codex]: Add `.codex\rules\default.rules` rules (sandbox) for Codex.
64
64
  - [agent]: Add agent custom instructions (`testing`) for Copilot and Claude.
65
65
 
66
66
  <a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
package/README.md CHANGED
@@ -185,7 +185,7 @@ log.debug(`State changed: ${green`on`} → ${red`off`}`);
185
185
  - **No `typescript` package** — replaced by [TypeScript Native](https://github.com/microsoft/typescript-go). The `typescript` package is kept only as a publish-time dependency while tsgo is still in preview.
186
186
  - **No ESLint, no Prettier** — replaced by the [oxc](https://oxc.rs) stack: [oxlint](https://oxc.rs/docs/guide/usage/linter.html) for linting and [oxfmt](https://oxc.rs/docs/guide/usage/formatter.html) for formatting.
187
187
  - **No Jest** — replaced by [Vitest](https://vitest.dev), which is much faster and natively supports ESM without extra configuration.
188
- - **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~80**. A clean install is much faster.
188
+ - **Far fewer development dependencies** — the number of installed packages drops from **~600** to **~75**. A clean install is much faster.
189
189
  - **Much faster linting and formatting** — oxlint and oxfmt run in a fraction of the time required by the ESLint / Prettier pipeline.
190
190
  - **Much faster builds** — tsgo compiles the project in a fraction of the time required by the standard `tsc` build.
191
191
  - **Editor support** — uses the VS Code extensions for tsgo and oxc to get the same experience in the editor.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "node-ansi-logger",
3
- "version": "3.3.0-dev-20260618-3a2b91c",
3
+ "version": "3.3.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "node-ansi-logger",
9
- "version": "3.3.0-dev-20260618-3a2b91c",
9
+ "version": "3.3.0",
10
10
  "license": "Apache-2.0",
11
11
  "engines": {
12
12
  "node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-ansi-logger",
3
- "version": "3.3.0-dev-20260618-3a2b91c",
3
+ "version": "3.3.0",
4
4
  "description": "Enhanced Ansi Color Logging and Stringify for Node.js in type script",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",