Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aegir

Package Overview
Dependencies
Maintainers
2
Versions
385
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aegir - npm Package Compare versions

Comparing version 45.0.5 to 45.0.6

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc