@morphql/cli 0.1.10 → 0.1.11
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -58,7 +58,7 @@ async function readStdin() {
|
|
|
58
58
|
var program = new Command();
|
|
59
59
|
program.name("morphql").description(
|
|
60
60
|
"CLI tool for morphql - transform structural data from the command line."
|
|
61
|
-
).version("0.1.
|
|
61
|
+
).version("0.1.11").option("-f, --from <path>", "Path to the source file").option("-i, --input <string>", "Raw source content as string").option(
|
|
62
62
|
"-t, --to <path>",
|
|
63
63
|
"Path to the destination file (if omitted, result is printed to stdout)"
|
|
64
64
|
).requiredOption("-q, --query <string>", "MorphQL query string").option("--cache-dir <path>", "Directory for compiled cache", ".compiled").action(async (options) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morphql/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "CLI tool for morphql - transform structural data from the command line.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@morphql/core": "*",
|
|
44
|
-
"commander": "^
|
|
44
|
+
"commander": "^14.0.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@types/node": "^25.0
|
|
47
|
+
"@types/node": "^25.2.0",
|
|
48
48
|
"tsup": "^8.5.1",
|
|
49
49
|
"typescript": "^5.9.3"
|
|
50
50
|
}
|