@nevermorelove/ompp 0.2.1 → 0.2.2
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 +1 -1
- package/ompp.js +2 -2
- package/package.json +1 -1
- package/modes/general/append.md +0 -3
- package/modes/general/config.yml +0 -8
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ inside an installed package. The first `ompp create` makes the folder for you.
|
|
|
63
63
|
|
|
64
64
|
A new mode is `ompp create <name>` (or plain `mkdir` plus files). No manifest,
|
|
65
65
|
no code. The wrapper reads the folder, so it never needs to change when you
|
|
66
|
-
add modes.
|
|
66
|
+
add modes.
|
|
67
67
|
|
|
68
68
|
## Precedence
|
|
69
69
|
|
package/ompp.js
CHANGED
|
@@ -326,7 +326,7 @@ async function main() {
|
|
|
326
326
|
const { modes, skipped } = discoverModes();
|
|
327
327
|
if (!modes.length) {
|
|
328
328
|
console.error(
|
|
329
|
-
`
|
|
329
|
+
`You have no modes yet. Create one with "ompp create <name>".`,
|
|
330
330
|
);
|
|
331
331
|
for (const s of SOURCES) console.error(`[ompp] looked in: ${s}`);
|
|
332
332
|
return 1;
|
|
@@ -360,7 +360,7 @@ async function main() {
|
|
|
360
360
|
}
|
|
361
361
|
if (!modes.length) {
|
|
362
362
|
console.error(
|
|
363
|
-
`
|
|
363
|
+
`You have no modes yet. Create one with "ompp create <name>".`,
|
|
364
364
|
);
|
|
365
365
|
for (const s of SOURCES) console.error(`[ompp] looked in: ${s}`);
|
|
366
366
|
return 1;
|
package/package.json
CHANGED
package/modes/general/append.md
DELETED