@thi.ng/pointfree-lang 2.3.14 → 2.3.15
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 +7 -1
- package/cli.js +2 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2025-06-
|
|
3
|
+
- **Last updated**: 2025-06-27T13:16:16Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -11,6 +11,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
11
11
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
12
12
|
and/or version bumps of transitive dependencies.
|
|
13
13
|
|
|
14
|
+
### [2.3.15](https://github.com/thi-ng/umbrella/tree/@thi.ng/pointfree-lang@2.3.15) (2025-06-27)
|
|
15
|
+
|
|
16
|
+
#### ♻️ Refactoring
|
|
17
|
+
|
|
18
|
+
- minor update CLI wrapper ([643985f](https://github.com/thi-ng/umbrella/commit/643985f))
|
|
19
|
+
|
|
14
20
|
## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/pointfree-lang@2.3.0) (2025-02-11)
|
|
15
21
|
|
|
16
22
|
#### 🚀 Features
|
package/cli.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { cliApp, flag, string } from "@thi.ng/args";
|
|
1
|
+
import { cliApp, flag, string, THING_HEADER } from "@thi.ng/args";
|
|
2
2
|
import { timedResult } from "@thi.ng/bench";
|
|
3
3
|
import { readJSON, readText, writeFile } from "@thi.ng/file-io";
|
|
4
4
|
import { LogLevel } from "@thi.ng/logger";
|
|
@@ -84,13 +84,7 @@ cliApp({
|
|
|
84
84
|
commands: { CMD },
|
|
85
85
|
single: true,
|
|
86
86
|
usage: {
|
|
87
|
-
prefix:
|
|
88
|
-
\u2588 \u2588 \u2588 \u2502
|
|
89
|
-
\u2588\u2588 \u2588 \u2502
|
|
90
|
-
\u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2502 ${PKG.name} v${PKG.version}
|
|
91
|
-
\u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2588 \u2502 Forth-style DSL & CLI
|
|
92
|
-
\u2588 \u2502
|
|
93
|
-
\u2588 \u2588 \u2502
|
|
87
|
+
prefix: `${THING_HEADER(PKG.name, PKG.version, "Forth-style DSL & CLI")}
|
|
94
88
|
|
|
95
89
|
Usage: pointfree [opts] [file]
|
|
96
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/pointfree-lang",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.15",
|
|
4
4
|
"description": "Forth style syntax layer/compiler & CLI for the @thi.ng/pointfree DSL",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@thi.ng/api": "^8.11.29",
|
|
47
|
-
"@thi.ng/args": "^2.
|
|
47
|
+
"@thi.ng/args": "^2.5.0",
|
|
48
48
|
"@thi.ng/bench": "^3.6.22",
|
|
49
49
|
"@thi.ng/errors": "^2.5.35",
|
|
50
50
|
"@thi.ng/file-io": "^2.1.38",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"parent": "@thi.ng/pointfree",
|
|
112
112
|
"year": 2018
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "71294b20c04b6ee35db08d30b43b292b07af0d1b\n"
|
|
115
115
|
}
|