From 985ce38df8b26be8de774b7b3ab3f44a65cde122 Mon Sep 17 00:00:00 2001 From: Squad03_Leticia_Lacerda Date: Mon, 27 Apr 2026 03:42:14 +0000 Subject: [PATCH] Excluir node_modules/acorn.ps1 --- node_modules/acorn.ps1 | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 node_modules/acorn.ps1 diff --git a/node_modules/acorn.ps1 b/node_modules/acorn.ps1 deleted file mode 100644 index 6f6dcdd..0000000 --- a/node_modules/acorn.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args - } else { - & "$basedir/node$exe" "$basedir/../acorn/bin/acorn" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../acorn/bin/acorn" $args - } else { - & "node$exe" "$basedir/../acorn/bin/acorn" $args - } - $ret=$LASTEXITCODE -} -exit $ret