mythik-cli 0.1.3 → 0.1.4
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 -6
- package/dist/cli.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -218,12 +218,19 @@ modify specs. Inside that directory:
|
|
|
218
218
|
- [`mythik-react`](https://github.com/mldixdev/mythik/tree/main/packages/react#readme) — render the specs as a React app
|
|
219
219
|
- [`mythik-server`](https://github.com/mldixdev/mythik/tree/main/packages/server#readme) — declarative REST server from an `ApiSpec`
|
|
220
220
|
|
|
221
|
-
## Status
|
|
222
|
-
|
|
221
|
+
## Status
|
|
222
|
+
|
|
223
223
|
Public release line. The binary name is `mythik`; the npm package name
|
|
224
224
|
is `mythik-cli`. APIs are documented for real-world feedback as the
|
|
225
225
|
framework evolves.
|
|
226
|
-
|
|
227
|
-
##
|
|
228
|
-
|
|
229
|
-
|
|
226
|
+
|
|
227
|
+
## Releases
|
|
228
|
+
|
|
229
|
+
Release notes and patch details are published in the
|
|
230
|
+
[CHANGELOG](https://github.com/mldixdev/mythik/blob/main/CHANGELOG.md)
|
|
231
|
+
and on
|
|
232
|
+
[GitHub Releases](https://github.com/mldixdev/mythik/releases).
|
|
233
|
+
|
|
234
|
+
## License
|
|
235
|
+
|
|
236
|
+
Apache-2.0.
|
package/dist/cli.js
CHANGED
|
@@ -28,7 +28,7 @@ const STORE_HELP = 'Store type (supabase, sqlserver, postgres, mysql, sqlite, fi
|
|
|
28
28
|
program
|
|
29
29
|
.name('mythik')
|
|
30
30
|
.description('Mythik CLI — manage specs via SpecEngine')
|
|
31
|
-
.version('0.1.
|
|
31
|
+
.version('0.1.4');
|
|
32
32
|
program
|
|
33
33
|
.command('manifest <screen>')
|
|
34
34
|
.description('Show structural tree of a screen spec')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mythik-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Command-line and programmatic tooling for validating, linting, pushing, patching, and versioning Mythik specs.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@inquirer/prompts": "^7.0.0",
|
|
47
47
|
"@toon-format/toon": "^2.1.0",
|
|
48
48
|
"commander": "^13.0.0",
|
|
49
|
-
"mythik": "0.1.
|
|
49
|
+
"mythik": "0.1.4"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/node": "^25.5.2"
|