You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xdpm install --ignore-files ".xdignore, .npmignore"# Override default list of .*ignore files ".gitignore, .xdignore, .npmignore"
52
53
```
53
54
54
55
You can install a plugin folder into Adobe XD using `xdpm install [...folders]`. If you don't specify a folder `xdpm install` assumes your current directory is a plugin and will install it into Adobe XD.
@@ -58,11 +59,12 @@ If the plugin folder is not a valid XD plugin, you'll receive an error upon atte
58
59
## Watching a plugin
59
60
60
61
```shell
61
-
xdpm watch # Watch current folder and install changes into Adobe XD
62
-
xdpm watch path/to/plugin # Watch the specified folder and install changes into Adobe XD
63
-
xdpm watch -w release # Install to Adobe XD CC Release (`r` is also valid; default)
64
-
xdpm watch -w prerelease # Install to Adobe XD CC Prerelease (`p` is also valid)
65
-
xdpm watch -c # Perform clean installs when watching
62
+
xdpm watch # Watch current folder and install changes into Adobe XD
63
+
xdpm watch path/to/plugin # Watch the specified folder and install changes into Adobe XD
64
+
xdpm watch -w release # Install to Adobe XD CC Release (`r` is also valid; default)
65
+
xdpm watch -w prerelease # Install to Adobe XD CC Prerelease (`p` is also valid)
66
+
xdpm watch -c # Perform clean installs when watching
67
+
xdpm watch --ignore-files ".xdignore, .npmignore"# Override default list of .*ignore files ".gitignore, .xdignore, .npmignore"
66
68
```
67
69
68
70
When developing a plugin, you can work directly in Adobe XD's `develop` folder, but this may not fit your particular workflow. In this case, you can invoke `xdpm watch` on a folder (or the current directory) and whenever changes are made, `xdpm install` will be automatically invoked to reinstall the plugins. This can simplify your development process significantly, especially if you don't use a build process.
@@ -111,6 +113,7 @@ Options:
111
113
[r|p|d|release|pre|prerelease|dev|development] (Default is r)
112
114
-k, --no-color Omit color from output
113
115
--debug Show debug information
116
+
--ignore-files Provide a custom list of .*ignore files, to override default ".gitignore, .xdignore, .npmignore"
0 commit comments