esoftplay 0.0.134-d → 0.0.134
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/bin/cli.js +1 -3
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -930,9 +930,7 @@ function build() {
|
|
|
930
930
|
// const oldFileName = fileName.replace(regexPattern, '$1');
|
|
931
931
|
let ext = fileName.split(".")
|
|
932
932
|
ext.shift()
|
|
933
|
-
|
|
934
|
-
fs.renameSync('./' + fileName, './' + appname)
|
|
935
|
-
command(`export APPNAME="${appname}"`)
|
|
933
|
+
fs.renameSync('./' + fileName, './' + ajson.expo.name + "-" + Named + "-" + getTime() + "." + ext.join("."))
|
|
936
934
|
});
|
|
937
935
|
});
|
|
938
936
|
let tmId = "-1001429450501"
|