papagaio 0.1.3 → 0.1.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 +1 -5
- package/package.json +1 -1
- package/papagaio.js +0 -1
package/README.md
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# Papagaio Preprocessor
|
|
2
2
|
|
|
3
|
-
*(Version 0.1.1)*
|
|
4
|
-
|
|
5
3
|
Papagaio is a lightweight, class‑based text preprocessor designed to support pattern rewriting, macro expansion, scoped transforms, and embedded JavaScript evaluation. It is engineered to be predictable, recursion‑safe, and easily embeddable in any JavaScript runtime.
|
|
6
4
|
|
|
7
5
|
---
|
|
@@ -25,11 +23,9 @@ Papagaio supports **nested delimiters**, **custom sigils**, and **configurable k
|
|
|
25
23
|
|
|
26
24
|
## Installation
|
|
27
25
|
|
|
28
|
-
Papagaio ships as a standalone ES module
|
|
26
|
+
Papagaio ships as a standalone ES module.
|
|
29
27
|
|
|
30
28
|
```js
|
|
31
|
-
const { Papagaio } = require("./papagaio.js");
|
|
32
|
-
// or
|
|
33
29
|
import { Papagaio } from "./papagaio.js";
|
|
34
30
|
```
|
|
35
31
|
|
package/package.json
CHANGED