@getik-public/cli 1.0.0 → 1.0.1

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/CHANGELOG.md CHANGED
@@ -1,2 +1,6 @@
1
+ ### v1.0.1
2
+ Fixed typo: missing input options in mobile-build function
3
+
4
+
1
5
  ### v1.0.0
2
6
  First stable version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getik-public/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -169,7 +169,7 @@ function copyFinalBuildToRootFolder(options) {
169
169
  }
170
170
 
171
171
 
172
- function buildPathToIosBuildFile() {
172
+ function buildPathToIosBuildFile(options) {
173
173
  const env = options.environment.toLowerCase().split('debug')[0];
174
174
  const filename = `${env}.ipa`;
175
175