@pieceful/ravel 0.1.0 → 0.1.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/README.md +23 -0
- package/package.json +5 -5
- package/src/index.js +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @pieceful/ravel
|
|
2
|
+
|
|
3
|
+
Ravel's Node.js command-line interface builds static literate-programming
|
|
4
|
+
projects from Markdown, Ravel Maps, or a `ravel.toml` project configuration.
|
|
5
|
+
|
|
6
|
+
```sh
|
|
7
|
+
npm install --save-dev @pieceful/ravel
|
|
8
|
+
npx ravel check ravel.toml
|
|
9
|
+
npx ravel build ravel.toml
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Use `check` to validate without writing, `inspect` to view chunks, graph, trace,
|
|
13
|
+
and provenance, and `build` to write declared deliverables and managed output
|
|
14
|
+
metadata. `--clean`, `refresh`, `--dry-run`, and `--backup` make output lifecycle
|
|
15
|
+
actions explicit and reviewable.
|
|
16
|
+
|
|
17
|
+
Requires Node.js 22 or newer. This is the Node-only host and CLI; it never
|
|
18
|
+
executes JavaScript, shell commands, or network requests from source documents.
|
|
19
|
+
|
|
20
|
+
See the [Ravel documentation](https://ravel.jostylr.com/) for installation,
|
|
21
|
+
configuration, command reference, and examples.
|
|
22
|
+
|
|
23
|
+
MIT © James Taylor
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pieceful/ravel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ravel command-line interface.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "James Taylor",
|
|
8
8
|
"repository": { "type": "git", "url": "git+https://github.com/jostylr/ravel.git", "directory": "packages/cli" },
|
|
9
9
|
"bugs": { "url": "https://github.com/jostylr/ravel/issues" },
|
|
10
|
-
"homepage": "https://
|
|
10
|
+
"homepage": "https://ravel.jostylr.com/",
|
|
11
11
|
"engines": { "node": ">=22" },
|
|
12
12
|
"keywords": ["ravel", "literate-programming", "cli", "build"],
|
|
13
13
|
"publishConfig": { "access": "public" },
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"exports": {
|
|
18
18
|
".": "./src/index.js"
|
|
19
19
|
},
|
|
20
|
-
"files": ["src", "LICENSE"],
|
|
20
|
+
"files": ["src", "README.md", "LICENSE"],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@pieceful/ravel-core": "0.1.
|
|
23
|
-
"@pieceful/ravel-host-node": "0.1.
|
|
22
|
+
"@pieceful/ravel-core": "0.1.1",
|
|
23
|
+
"@pieceful/ravel-host-node": "0.1.1"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/src/index.js
CHANGED