@mojir/lits 2.2.3 → 2.2.4
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/README.md +0 -8
- package/dist/cli/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,14 +4,6 @@ A functional language with algebraic notation and JavaScript interoperability.
|
|
|
4
4
|
|
|
5
5
|
Try it in the [Lits Playground](https://mojir.github.io/lits/).
|
|
6
6
|
|
|
7
|
-
## TODO
|
|
8
|
-
Fix playground, it looks a bit funky under modules.
|
|
9
|
-
Also fix Header, were name, module and category should be presented
|
|
10
|
-
|
|
11
|
-
Model cli as module, create a new bundle that include this module. The existing full bundle should not include this.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
7
|
## Features
|
|
16
8
|
|
|
17
9
|
- **Pure functional language** - Variables cannot be changed, ensuring predictable behavior and easier reasoning about code
|
package/dist/cli/cli.js
CHANGED
|
@@ -7,7 +7,7 @@ var readline = require('node:readline');
|
|
|
7
7
|
var os = require('node:os');
|
|
8
8
|
var process$1 = require('node:process');
|
|
9
9
|
|
|
10
|
-
var version = "2.2.
|
|
10
|
+
var version = "2.2.4";
|
|
11
11
|
|
|
12
12
|
function getCodeMarker(sourceCodeInfo) {
|
|
13
13
|
if (!sourceCodeInfo.position || !sourceCodeInfo.code)
|