@dallaylaen/ski-interpreter 2.6.0 → 2.6.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.
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.6.1] - 2026-03-29
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- renames `ski-interpreter.esm.js` -> `ski-interpreter.mjs`
|
|
13
|
+
and fixed types location in package.json
|
|
14
|
+
because ESM was not recognizing the package correctly.
|
|
15
|
+
|
|
8
16
|
## [2.6.0] - 2026-03-28
|
|
9
17
|
|
|
10
18
|
### BREAKING CHANGES
|
|
@@ -15973,4 +15973,4 @@ if (typeof window !== "undefined")
|
|
|
15973
15973
|
export {
|
|
15974
15974
|
SKI
|
|
15975
15975
|
};
|
|
15976
|
-
//# sourceMappingURL=ski-interpreter.
|
|
15976
|
+
//# sourceMappingURL=ski-interpreter.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dallaylaen/ski-interpreter",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "Simple Kombinator Interpreter - a combinatory logic & lambda calculus parser and interpreter. Supports SKI, BCKW, Church numerals, and setting up assertions ('quests') involving all of the above.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"combinatory logic",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
],
|
|
12
12
|
"type": "commonjs",
|
|
13
13
|
"main": "lib/ski-interpreter.cjs.js",
|
|
14
|
-
"
|
|
15
|
-
"module": "lib/ski-interpreter.esm.js",
|
|
14
|
+
"module": "lib/ski-interpreter.mjs",
|
|
16
15
|
"exports": {
|
|
17
|
-
"
|
|
16
|
+
"types": "./lib/types/index.d.ts",
|
|
17
|
+
"import": "./lib/ski-interpreter.mjs",
|
|
18
18
|
"require": "./lib/ski-interpreter.cjs.js"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "npm run tsc; npx nyc mocha --recursive test",
|
|
27
27
|
"build-web": "npx esbuild --bundle --minify --sourcemap --format=iife ./src/index.ts --outfile=docs/build/js/ski-interpreter.min.js",
|
|
28
28
|
"build-cjs": "npx esbuild --bundle --sourcemap --format=cjs ./src/index.ts --outfile=lib/ski-interpreter.cjs.js",
|
|
29
|
-
"build-esm": "npx esbuild --bundle --sourcemap --format=esm ./src/index.ts --outfile=lib/ski-interpreter.
|
|
29
|
+
"build-esm": "npx esbuild --bundle --sourcemap --format=esm ./src/index.ts --outfile=lib/ski-interpreter.mjs",
|
|
30
30
|
"build-site": "npx esbuild --bundle --minify --sourcemap ./site-src/index.js --outfile=docs/build/js/util.min.js",
|
|
31
31
|
"build-quest": "npx esbuild --bundle --minify --sourcemap --format=iife ./site-src/index-quest.js --outfile=docs/build/js/ski-quest.min.js",
|
|
32
32
|
"build-all": "npm run build-cjs && npm run build-esm && npm run build-web && npm run build-site && npm run build-quest",
|
|
File without changes
|