We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9edee57 + 49a54e6 commit bbdeed8Copy full SHA for bbdeed8
3 files changed
.gitignore
@@ -59,3 +59,6 @@ typings/
59
60
# next.js build output
61
.next
62
+
63
+# Disallow prettierjs code formatting (until we agree upon conventions)
64
+.prettierignore
index.js
@@ -18,7 +18,9 @@
18
const cli = require("cli");
19
const package = require("./package.json");
20
21
-cli.enable("status");
22
+cli.enable("status", "version");
23
+cli.setApp(package.name, package.version);
24
25
const commands = {
26
"install": "Install a plugin in development mode",
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@adobe/xdpm",
3
- "version": "3.0.2",
+ "version": "3.1.0",
4
"description": "Adobe XD CLI Plugin Manager Utility",
5
"main": "index.js",
6
"scripts": {
0 commit comments