@codeleap/cli 2.4.9 → 2.4.10
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/commands/rename.js +2 -1
- package/package.json +2 -2
package/dist/commands/rename.js
CHANGED
|
@@ -71,7 +71,7 @@ exports.renameMobileCommand = (0, Command_1.codeleapCommand)({
|
|
|
71
71
|
"codeleap ".concat(commandName, " myAppName --ios # renames only ios folder"),
|
|
72
72
|
"codeleap ".concat(commandName, " myAppName --android # renames only android folder"),
|
|
73
73
|
"codeleap ".concat(commandName, " myAppName --android --ios # renames both folders"),
|
|
74
|
-
"codeleap ".concat(commandName, " myAppName --android --ios --dry # Will show the
|
|
74
|
+
"codeleap ".concat(commandName, " myAppName --android --ios --dry # Will show the new display and bundle names"),
|
|
75
75
|
],
|
|
76
76
|
},
|
|
77
77
|
flags: {
|
|
@@ -116,6 +116,7 @@ exports.renameMobileCommand = (0, Command_1.codeleapCommand)({
|
|
|
116
116
|
bundleName = (0, lib_1.getNewBundleName)(name);
|
|
117
117
|
console.log("Bundle name: ".concat(bundleName));
|
|
118
118
|
console.log("App name: ".concat(name));
|
|
119
|
+
return [2 /*return*/];
|
|
119
120
|
}
|
|
120
121
|
if (flags.android) {
|
|
121
122
|
androidFolder_1 = path_1.default.join(constants_1.cwd, 'android');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeleap/cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.10",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"repository": "git@github.com:codeleap-uk/codeleap-lib.git",
|
|
6
6
|
"author": "Paulo Henrique De Souza <paulosouza300272@gmail.com>",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@codeleap/common": "*"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@codeleap/common": "",
|
|
20
|
+
"@codeleap/common": "*",
|
|
21
21
|
"typescript": "4.5.4"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|