diff --git a/packages/js-beautify.vm/js-beautify.vm.nuspec b/packages/js-beautify.vm/js-beautify.vm.nuspec new file mode 100644 index 00000000..b86ff384 --- /dev/null +++ b/packages/js-beautify.vm/js-beautify.vm.nuspec @@ -0,0 +1,13 @@ + + + + js-beautify.vm + 1.15.1.20240930 + beautifier.io + JavaScript beautifier and deobfuscator. + + + + + + diff --git a/packages/js-beautify.vm/tools/chocolateyinstall.ps1 b/packages/js-beautify.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 00000000..1b3fcf58 --- /dev/null +++ b/packages/js-beautify.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'js-beautify' +$category = 'Javascript' + +VM-Install-Node-Tool -toolName $toolName -category $category -arguments "--help" diff --git a/packages/js-beautify.vm/tools/chocolateyuninstall.ps1 b/packages/js-beautify.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 00000000..fa0283e1 --- /dev/null +++ b/packages/js-beautify.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'js-beautify' +$category = 'Javascript' + +VM-Uninstall $toolName $category