https://github.com/twbs/bootstrap
Raw File
Tip revision: 0b9c4a4007c44201dce9a6cc1a38407005c26c86 authored by Chris Rebert on 25 July 2016, 15:51:54 UTC
Regenerate Customizer JavaScript
Tip revision: 0b9c4a4
MyGet.ps1
$nuget = $env:NuGet

# parse the version number out of package.json
$bsversion = ((Get-Content $env:SourcesPath\package.json) -join "`n" | ConvertFrom-Json).version

# create packages
& $nuget pack "nuget\bootstrap.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion
& $nuget pack "nuget\bootstrap.less.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion
back to top