kei-lisp 2.1.0 → 2.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/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # kei-lisp
2
2
 
3
+ [![CI](https://github.com/ike-keichan/kei-lisp/actions/workflows/ci.yml/badge.svg)](https://github.com/ike-keichan/kei-lisp/actions/workflows/ci.yml)
3
4
  [![npm version](https://img.shields.io/npm/v/kei-lisp.svg)](https://www.npmjs.com/package/kei-lisp)
4
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
5
6
  [![Node.js](https://img.shields.io/badge/node-%3E%3D24.0.0-brightgreen.svg)](https://nodejs.org/)
@@ -10,6 +11,7 @@ an interactive REPL, or embed it in your application as a library.
10
11
  ## Features
11
12
 
12
13
  - Common Lisp-inspired syntax (`setq`, `defun`, `let`, `cond`, ...)
14
+ - Macros: `defmacro` with backquote/unquote (`` ` ``, `,`, `,@`) and `macroexpand`
13
15
  - CLI tool **and** embeddable library
14
16
  - ESM and CommonJS dual output with TypeScript types
15
17
  - Zero runtime dependencies
@@ -166,8 +168,8 @@ Runnable TypeScript examples live in [`examples/`](./examples/):
166
168
 
167
169
  ```sh
168
170
  pnpm build # build the package once
169
- pnpm exec tsx examples/basic-eval.ts
170
- pnpm exec tsx examples/exit-handling.ts
171
+ node --experimental-strip-types examples/basic-eval.ts
172
+ node --experimental-strip-types examples/exit-handling.ts
171
173
  ```
172
174
 
173
175
  ## Reference