summaryrefslogtreecommitdiff
path: root/minionlivesmatter/templates/assets/bootstrap/nuget
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-03-25 13:13:57 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2017-03-25 13:13:57 +0100
commitd25ff2bddd44b9dac1ceb248424109d1782dd211 (patch)
tree34fcfd824a1a72e7b4d431b688adcea532b62180 /minionlivesmatter/templates/assets/bootstrap/nuget
parenta2cbdd1b88ac723e5e441c0a3c22636f0a8c4dfd (diff)
downloadmeta-d25ff2bddd44b9dac1ceb248424109d1782dd211.tar.gz
meta-d25ff2bddd44b9dac1ceb248424109d1782dd211.zip
add minionlivesmatter as submodule
Diffstat (limited to 'minionlivesmatter/templates/assets/bootstrap/nuget')
-rw-r--r--minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps118
-rw-r--r--minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.nuspec27
-rw-r--r--minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.sass.nuspec27
3 files changed, 0 insertions, 72 deletions
diff --git a/minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1 b/minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1
deleted file mode 100644
index 71110b5..0000000
--- a/minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1
+++ /dev/null
@@ -1,18 +0,0 @@
-# set env vars usually set by MyGet (enable for local testing)
-#$env:SourcesPath = '..'
-#$env:NuGet = "./nuget.exe" #https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
-
-$nuget = $env:NuGet
-
-# parse the version number out of package.json
-$bsversionParts = ((Get-Content $env:SourcesPath\package.json) -join "`n" | ConvertFrom-Json).version.split('-', 2) # split the version on the '-'
-$bsversion = $bsversionParts[0]
-
-if ($bsversionParts.Length -gt 1)
-{
- $bsversion += '-' + $bsversionParts[1].replace('.', '').replace('-', '_') # strip out invalid chars from the PreRelease part
-}
-
-# create packages
-& $nuget pack "$env:SourcesPath\nuget\bootstrap.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion
-& $nuget pack "$env:SourcesPath\nuget\bootstrap.sass.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion
diff --git a/minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.nuspec b/minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.nuspec
deleted file mode 100644
index bbb4582..0000000
--- a/minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.nuspec
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0"?>
-<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
- <metadata>
- <id>bootstrap</id>
- <version>4.0.0</version>
- <title>Bootstrap CSS</title>
- <authors>The Bootstrap Authors, Twitter Inc.</authors>
- <owners>bootstrap</owners>
- <description>The most popular front-end framework for developing responsive, mobile first projects on the web.</description>
- <releaseNotes>https://blog.getbootstrap.com</releaseNotes>
- <summary>Bootstrap framework in CSS. Includes fonts and JavaScript</summary>
- <language>en-us</language>
- <projectUrl>https://getbootstrap.com</projectUrl>
- <iconUrl>https://getbootstrap.com/apple-touch-icon.png</iconUrl>
- <licenseUrl>https://github.com/twbs/bootstrap/blob/master/LICENSE</licenseUrl>
- <copyright>Copyright 2017</copyright>
- <requireLicenseAcceptance>false</requireLicenseAcceptance>
- <dependencies>
- <dependency id="jQuery" version="[1.9.1,4)" />
- </dependencies>
- <tags>css mobile-first responsive front-end framework web</tags>
- </metadata>
- <files>
- <file src="dist\css\*.*" target="content\Content" />
- <file src="dist\js\bootstrap*.js" target="content\Scripts" />
- </files>
-</package>
diff --git a/minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.sass.nuspec b/minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.sass.nuspec
deleted file mode 100644
index aba443c..0000000
--- a/minionlivesmatter/templates/assets/bootstrap/nuget/bootstrap.sass.nuspec
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0"?>
-<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
- <metadata>
- <id>bootstrap.sass</id>
- <version>4.0.0</version>
- <title>Bootstrap Sass</title>
- <authors>The Bootstrap Authors, Twitter Inc.</authors>
- <owners>bootstrap</owners>
- <description>The most popular front-end framework for developing responsive, mobile first projects on the web.</description>
- <releaseNotes>https://blog.getbootstrap.com</releaseNotes>
- <summary>Bootstrap framework in Sass. Includes fonts and JavaScript</summary>
- <language>en-us</language>
- <projectUrl>https://getbootstrap.com</projectUrl>
- <iconUrl>https://getbootstrap.com/apple-touch-icon.png</iconUrl>
- <licenseUrl>https://github.com/twbs/bootstrap/blob/master/LICENSE</licenseUrl>
- <copyright>Copyright 2017</copyright>
- <requireLicenseAcceptance>false</requireLicenseAcceptance>
- <dependencies>
- <dependency id="jQuery" version="[1.9.1,4)" />
- </dependencies>
- <tags>css sass mobile-first responsive front-end framework web</tags>
- </metadata>
- <files>
- <file src="scss\**\*.scss" target="content\Content\bootstrap" />
- <file src="dist\js\bootstrap*.js" target="content\Scripts" />
- </files>
-</package>