eyereasoner 2.0.0 → 2.1.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 +13 -1
- package/dist/eye.d.ts +1 -1
- package/dist/eye.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -151,12 +151,24 @@ main();
|
|
|
151
151
|
|
|
152
152
|
## CLI Usage
|
|
153
153
|
|
|
154
|
-
|
|
154
|
+
This package also exposes a CLI interface for using the reasoner. It can be used via `npx`
|
|
155
155
|
|
|
156
156
|
```bash
|
|
157
|
+
# Run the command using the latest version of eyereasoner on npm
|
|
158
|
+
npx eyereasoner --nope --quiet ./socrates.n3 --query ./socrates-query.n3
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
or by globally installing `eyereasoner`
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
# Gloablly install eyereasoner
|
|
165
|
+
npm i -g eyereasoner
|
|
166
|
+
# Run a command with eyereasoner
|
|
157
167
|
eyereasoner --nope --quiet ./socrates.n3 --query ./socrates-query.n3
|
|
158
168
|
```
|
|
159
169
|
|
|
170
|
+
|
|
171
|
+
|
|
160
172
|
## License
|
|
161
173
|
©2022–present
|
|
162
174
|
[Jesse Wright](https://github.com/jeswr),
|