Tasks/Invoke-WhiskeyNpmRunScript.ps1
function Invoke-WhiskeyNpmRunScript { <# .SYNOPSIS Runs NPM scripts. .DESCRIPTION The `NpmRunScript` task will use NPM's `run` command to run a list of NPM scripts. These scripts are defined in your `package.json` file's `Script` property. The task will run all `Script` that were given to the task. If any script fails, the task will fail. A script failure is determined by examining the exit code of the `npm run` command, any non-zero exit code is considered a failure. You must specify what version of Node.js you want in the engines field of your package.json file. (See https://docs.npmjs.com/files/package.json#engines for more information.) The version of Node is installed for you using NVM. You may additionally specify a version of NPM to use in the engines field of your package.json file. NPM will be downloaded into your package's 'node_modules' directory at the specified version. This local version of NPM will be used to execute the list of `Script`. # Properties # * `Script` (mandatory): a list of one or more NPM scripts to run, e.g. `npm run $SCRIPT_NAME`. Each script is run independently. # * `WorkingDirectory`: the directory where the `package.json` exists. Defaults to the directory where the build's `whiskey.yml` file was found. Must be relative to the `whiskey.yml` file. # * `NpmRegistryUri` (mandatory): the uri to set a custom npm registry. # Examples ## Example 1 BuildTasks: - NpmRunScript: NpmRegistryUri: "http://registry.npmjs.org" Script: - build - test This example will run the `build` and `test` NPM scripts. The Node.js `package.json` file is located in the build root next to the `whiskey.yml` file. ## Example 2 BuildTasks: - NpmRunScript: NpmRegistryUri: "http://registry.npmjs.org" Script: - test WorkingDirectory: app This example will run the `test` NPM script. The root of the Node.js package and `package.json` file are located in the `(BUILD_ROOT)\app` directory. #> [Whiskey.Task("NpmRunScript", SupportsClean=$true, SupportsInitialize=$true)] [CmdletBinding()] param( [Parameter(Mandatory=$true)] [object] $TaskContext, [Parameter(Mandatory=$true)] [hashtable] $TaskParameter ) Set-StrictMode -Version 'Latest' Use-CallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState $startedAt = Get-Date function Write-Timing { param( $Message ) $now = Get-Date Write-Debug -Message ('[{0}] [{1}] {2}' -f $now,($now - $startedAt),$Message) } $npmRegistryUri = $TaskParameter['NpmRegistryUri'] if (-not $NpmRegistryUri) { Stop-WhiskeyTask -TaskContext $TaskContext -Message 'Property ''NpmRegistryUri'' is mandatory. It should be the URI to the registry from which Node.js packages should be downloaded, e.g., BuildTasks: - NpmRunScript: NpmRegistryUri: https://registry.npmjs.org/ ' } $workingDirectory = $TaskContext.BuildRoot if ($TaskParameter['WorkingDirectory']) { $workingDirectory = $TaskParameter['WorkingDirectory'] | Resolve-WhiskeyTaskPath -TaskContext $TaskContext -PropertyName 'WorkingDirectory' } if ($TaskContext.ShouldClean()) { Write-Timing -Message 'Cleaning' Uninstall-WhiskeyNodeModule -Name 'npm' -ApplicationRoot $workingDirectory -RegistryUri $npmRegistryUri -ForDeveloper:$TaskContext.ByDeveloper -Force Write-Timing -Message 'COMPLETE' return } if ($TaskContext.ShouldInitialize()) { Write-Timing -Message 'Initializing' Invoke-WhiskeyNpmCommand -InitializeOnly -ApplicationRoot $workingDirectory -RegistryUri $npmRegistryUri -ForDeveloper:$TaskContext.ByDeveloper if ($Global:LASTEXITCODE -ne 0) { Stop-WhiskeyTask -TaskContext $TaskContext -Message 'Task initialization failed.' } Write-Timing -Message 'COMPLETE' return } $npmScripts = $TaskParameter['Script'] if (-not $npmScripts) { Stop-WhiskeyTask -TaskContext $TaskContext -Message 'Property ''Script'' is mandatory. It should be a list of one or more npm scripts to run during your build, e.g., BuildTasks: - NpmRunScript: Script: - build - test ' } foreach ($script in $npmScripts) { Write-Timing -Message ('Running script ''{0}''.' -f $script) Invoke-WhiskeyNpmCommand -NpmCommand 'run' -Argument $script -ApplicationRoot $workingDirectory -RegistryUri $NpmRegistryUri -ForDeveloper:$TaskContext.ByDeveloper Write-Timing -Message ('COMPLETE') if ($Global:LASTEXITCODE -ne 0) { Stop-WhiskeyTask -TaskContext $TaskContext -Message ('NPM script ''{0}'' failed with exit code ''{1}''.' -f $script,$LASTEXITCODE) } } } |