papagaio 0.1.3 → 0.1.5

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,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 or CommonJS export.
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/node.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { Papagaio } from "./src/papagaio.js";
2
+ import { Papagaio } from "./papagaio.js";
3
3
  import fs from "fs";
4
4
 
5
5
  const file = process.argv[2];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "papagaio",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "easy yet powerful preprocessor",
5
5
  "main": "papagaio.js",
6
6
  "type": "module",
package/papagaio.js CHANGED
@@ -3,7 +3,6 @@
3
3
  // ============================================
4
4
 
5
5
  export class Papagaio {
6
- version = "0.1.3";
7
6
  maxRecursion = 512;
8
7
 
9
8
  // Private state