mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00
16 lines
419 B
PowerShell
16 lines
419 B
PowerShell
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
Remove-Item -Recurse -Force engine
|
|
Remove-Item -Recurse -Force .surfer
|
|
|
|
npm run init
|
|
|
|
$job = Start-Job -ScriptBlock {
|
|
npm run build
|
|
}
|
|
|
|
# Wait for job to complete with timeout (in seconds)
|
|
$job | Wait-Job -Timeout 5
|