Comparing version 45.0.5 to 45.0.6
{ | ||
"name": "aegir", | ||
"version": "45.0.5", | ||
"version": "45.0.6", | ||
"description": "JavaScript project management", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0 OR MIT", |
@@ -126,3 +126,4 @@ /* eslint-disable no-console */ | ||
export async function ensureFileNotPresent (projectDir, filePath) { | ||
const fileExists = fs.existsSync(path.join(projectDir, filePath)) | ||
const fullPath = path.join(projectDir, filePath) | ||
const fileExists = fs.existsSync(fullPath) | ||
@@ -134,3 +135,3 @@ if (fileExists) { | ||
console.warn(kleur.yellow(`${filePath} exist`)) | ||
console.warn(kleur.yellow(`${filePath} exists`)) | ||
@@ -151,3 +152,3 @@ const { removeFile } = await prompt.get({ | ||
fs.rmSync(filePath) | ||
fs.rmSync(fullPath) | ||
} | ||
@@ -154,0 +155,0 @@ } |
@@ -298,3 +298,3 @@ /* eslint-disable no-console */ | ||
return contents.includes('uses: google-github-actions/release-please-action') | ||
return contents.includes('release-please-action') | ||
} catch { | ||
@@ -301,0 +301,0 @@ return false |
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
Unpublished package
Supply chain riskPackage version was not found on the registry. It may exist on a different registry and need to be configured to pull from that registry.
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
Unpublished package
Supply chain riskPackage version was not found on the registry. It may exist on a different registry and need to be configured to pull from that registry.
Found 1 instance in 1 package
303442
8016