waffle-server-repo-service
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -65,3 +65,3 @@ "use strict"; | ||
const { pathToRepo } = lodash_1.defaults(options, exports.defaultOptions); | ||
const command = this.wrapGitCommand(pathToRepo, `clean -f -d`); | ||
const command = this.wrapGitCommand(pathToRepo, `clean -f -x`); | ||
return this.runShellJsCommand(command, options, callback); | ||
@@ -68,0 +68,0 @@ } |
@@ -134,3 +134,3 @@ import * as Logger from 'bunyan'; | ||
const { pathToRepo } = defaults(options, defaultOptions); | ||
const command = this.wrapGitCommand(pathToRepo, `clean -f -d`); | ||
const command = this.wrapGitCommand(pathToRepo, `clean -f -x`); | ||
@@ -137,0 +137,0 @@ return this.runShellJsCommand(command, options, callback); |
{ | ||
"name": "waffle-server-repo-service", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Module for working with git repos on WS and CLI tool", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -862,3 +862,3 @@ /* tslint:disable:no-invalid-this*/ | ||
const command = `git --git-dir=${pathToRepo}.git --work-tree=${pathToRepo} clean -f -d`; | ||
const command = `git --git-dir=${pathToRepo}.git --work-tree=${pathToRepo} clean -f -x`; | ||
@@ -903,3 +903,3 @@ const options: Options = { githubUrl, pathToRepo, async: false, silent: false }; | ||
const branch = 'development'; | ||
const command = `git --git-dir=${pathToRepo}.git --work-tree=${pathToRepo} clean -f -d`; | ||
const command = `git --git-dir=${pathToRepo}.git --work-tree=${pathToRepo} clean -f -x`; | ||
@@ -906,0 +906,0 @@ const options: Options = { githubUrl, pathToRepo, branch, async: true, silent: true }; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
184179