conjure-js 0.0.5 → 0.0.8
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 +5 -5
- package/dist-cli/conjure-js.mjs +5697 -0
- package/package.json +5 -4
- package/src/bin/cli.ts +6 -5
- package/src/bin/version.ts +1 -1
- package/conjure +0 -0
package/README.md
CHANGED
|
@@ -128,7 +128,7 @@ You may need to install [Bun](https://bun.sh) for certain features.
|
|
|
128
128
|
### Interactive REPL
|
|
129
129
|
|
|
130
130
|
```bash
|
|
131
|
-
conjure repl
|
|
131
|
+
conjure-js repl
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
```
|
|
@@ -146,20 +146,20 @@ user=> (exit)
|
|
|
146
146
|
### Run a File
|
|
147
147
|
|
|
148
148
|
```bash
|
|
149
|
-
conjure run my-script.clj
|
|
149
|
+
conjure-js run my-script.clj
|
|
150
150
|
```
|
|
151
151
|
|
|
152
152
|
### nREPL Server
|
|
153
153
|
|
|
154
154
|
```bash
|
|
155
|
-
conjure nrepl-server
|
|
155
|
+
conjure-js nrepl-server
|
|
156
156
|
# Conjure nREPL server 0.0.1 started on port 7888
|
|
157
157
|
```
|
|
158
158
|
|
|
159
159
|
Options:
|
|
160
160
|
|
|
161
161
|
```bash
|
|
162
|
-
conjure nrepl-server --port 7889 --host 0.0.0.0
|
|
162
|
+
conjure-js nrepl-server --port 7889 --host 0.0.0.0
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
#### Connecting with Calva (VS Code)
|
|
@@ -211,7 +211,7 @@ console.log(printString(result)) // (2 3 4)
|
|
|
211
211
|
|
|
212
212
|
## Source Root Discovery
|
|
213
213
|
|
|
214
|
-
When running `conjure nrepl-server` or `conjure run`, Conjure looks for source roots by reading the `conjure.sourceRoots` field in `package.json`:
|
|
214
|
+
When running `conjure-js nrepl-server` or `conjure-js run`, Conjure looks for source roots by reading the `conjure.sourceRoots` field in `package.json`:
|
|
215
215
|
|
|
216
216
|
```json
|
|
217
217
|
{
|