@grosspoetrysystems/oompf 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 +13 -5
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -8
package/README.md
CHANGED
|
@@ -29,18 +29,26 @@ and serves **metadata only**.
|
|
|
29
29
|
|
|
30
30
|
## Install
|
|
31
31
|
|
|
32
|
+
`oompf` is a terminal command, so install it globally:
|
|
33
|
+
|
|
32
34
|
```bash
|
|
33
|
-
|
|
35
|
+
npm install -g @grosspoetrysystems/oompf
|
|
34
36
|
```
|
|
35
37
|
|
|
36
|
-
Or
|
|
38
|
+
Or run it without installing:
|
|
37
39
|
|
|
38
40
|
```bash
|
|
39
|
-
|
|
41
|
+
bunx @grosspoetrysystems/oompf@latest --help
|
|
42
|
+
npx @grosspoetrysystems/oompf@latest --help
|
|
40
43
|
```
|
|
41
44
|
|
|
42
|
-
The package is scoped; the
|
|
43
|
-
|
|
45
|
+
The package name is scoped; the command is plain `oompf`, which is what the
|
|
46
|
+
examples below use.
|
|
47
|
+
|
|
48
|
+
A project-local `npm install` is the wrong shape here: the binary lands in
|
|
49
|
+
`node_modules/.bin`, which is not on your `PATH`, and npm refuses the install
|
|
50
|
+
entirely inside a repository that uses `workspace:` specifiers. Use `-g` or
|
|
51
|
+
`bunx`.
|
|
44
52
|
|
|
45
53
|
Working in a clone of the repository? Run it from source with
|
|
46
54
|
`bun apps/cli/src/index.ts <command>`.
|
package/dist/index.d.mts
CHANGED
|
@@ -171,7 +171,7 @@ interface CliDeps {
|
|
|
171
171
|
* Must match `package.json`; `index.test.ts` asserts it, because a published
|
|
172
172
|
* binary reporting the wrong version makes every bug report ambiguous.
|
|
173
173
|
*/
|
|
174
|
-
declare const CLI_VERSION = "0.1.
|
|
174
|
+
declare const CLI_VERSION = "0.1.1";
|
|
175
175
|
/** Build the OOMPF CLI with the given (optional) injectable seams. */
|
|
176
176
|
declare function createCli(deps?: CliDeps): Cli.Cli<{}, undefined, undefined, undefined>;
|
|
177
177
|
//#endregion
|
package/dist/index.mjs
CHANGED
|
@@ -8441,7 +8441,7 @@ function registerSearch(cli, deps) {
|
|
|
8441
8441
|
* Must match `package.json`; `index.test.ts` asserts it, because a published
|
|
8442
8442
|
* binary reporting the wrong version makes every bug report ambiguous.
|
|
8443
8443
|
*/
|
|
8444
|
-
const CLI_VERSION = "0.1.
|
|
8444
|
+
const CLI_VERSION = "0.1.1";
|
|
8445
8445
|
/** Build the OOMPF CLI with the given (optional) injectable seams. */
|
|
8446
8446
|
function createCli(deps = {}) {
|
|
8447
8447
|
const resolved = resolveDeps(deps);
|