We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following PowerShell command
Get-ChildItem -Path $env:USERPROFILE\Documents\development -Filter node_modules -Directory -Recurse | Remove-Item -Force -Recurse
This would remove all node_modules folders in development, recursing into subdirectories.
node_modules
development
How would I best write this in node-powershell? I can do it with
addCommand(`Get-ChildItem -Path $env:USERPROFILE\Documents\development -Filter node_modules -Directory -Recurse | Remove-Item -Force -Recurse`)
But I would prefer to be able to do it with something like
const ps = new shell({ executionPolicy: 'Bypass', noProfile: true }); await ps.addCommand('Get-ChildItem'); await ps.addParameters([ { Path: '$env:USERPROFILE\Documents\development' }, { Filter: 'node_modules' }, { Directory: '' }, { Recurse: '' } ]); // Adds ` | Remove-Item` await ps.addPipedCommand('Remove-Item'); // Adding parameters to `Remove-Item` await ps.addParameters([ { Force: '' }, { Recurse: '' } ]);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the following PowerShell command
This would remove all
node_modules
folders indevelopment
, recursing into subdirectories.How would I best write this in node-powershell? I can do it with
But I would prefer to be able to do it with something like
The text was updated successfully, but these errors were encountered: