@cmflow/cli 1.0.7 → 1.0.9
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/package.json
CHANGED
|
@@ -22,11 +22,6 @@ export function verifyConditions (pluginConfig, context) {
|
|
|
22
22
|
context.logger.error(chalk.red('Ignore git configuration (Empty GIT_USER_EMAIL or/and GIT_USER_NAME variables)'))
|
|
23
23
|
process.exit(1)
|
|
24
24
|
}
|
|
25
|
-
git.config('--global', 'core.compression', 9)
|
|
26
|
-
git.config('--global', 'pack.windowMemory', '100m')
|
|
27
|
-
git.config('--global', 'pack.SizeLimit', '100m')
|
|
28
|
-
git.config('--global', 'pack.threads', '1')
|
|
29
|
-
git.prune().sync()
|
|
30
25
|
git.fetch().sync()
|
|
31
26
|
git.checkout(branch.name).sync()
|
|
32
27
|
git.branch(`--set-upstream-to=${ORIGIN}/${branch.name}`, branch.name).sync()
|