apn-app-manager 1.8.0 → 1.8.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 +0 -2
- package/package.json +1 -1
- package/src/actions/cloneAction.js +1 -1
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
`apn-app-manager` is a command line tool that ingests an Appian application zip file, makes changes to the underlying XML files, and outputs a new Appian application zip file. It currently supports cloning an application.
|
|
4
4
|
|
|
5
|
-
Test beta version
|
|
6
|
-
|
|
7
5
|
## Why?
|
|
8
6
|
|
|
9
7
|
When app building you may want to do things in bulk that are easiest to do via an application's exported XML files and a re-import. This tool helps to automate some of those tasks.
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@ function main(callback) {
|
|
|
31
31
|
fileSelect.selectSingleFile("Select import customization properties file", ["properties"], true, function (icfPath) {
|
|
32
32
|
prompt.promptList("Advanced options?", ["No", "Yes"], function (enhancedOptions) {
|
|
33
33
|
if (enhancedOptions == "Yes") {
|
|
34
|
-
promptAdvancedOptions(appZipPath, icfPath,
|
|
34
|
+
promptAdvancedOptions(appZipPath, icfPath, callback);
|
|
35
35
|
} else {
|
|
36
36
|
promptNamespace("What is your current namespace?", function (curNamespace) {
|
|
37
37
|
promptNamespace("What is your new namespace?", function (newNamespace) {
|