-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.7.0: (GH-11) Finished blog post (GH-11) Added Wyam Documentation (GH-8) Corrected cache invalidation (GH-8) Updated AppVeyor config file (GH-8) Refactoring to get basic build to work (GH-8) Updated gitignore file (GH-8) Added main Cake.Recipe files (GH-8) Removed GitVersion Config file (GH-8) Added GRM Config file (GH-8) Renamed AppVeyor file
- Loading branch information
Showing
30 changed files
with
691 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#---------------------------------# | ||
# Build Script # | ||
#---------------------------------# | ||
build_script: | ||
- ps: .\build.ps1 -Target AppVeyor | ||
|
||
# Tests | ||
test: off | ||
|
||
#---------------------------------# | ||
# Branches to build # | ||
#---------------------------------# | ||
branches: | ||
# Whitelist | ||
only: | ||
- develop | ||
- master | ||
- /release/.*/ | ||
- /hotfix/.*/ | ||
|
||
#---------------------------------# | ||
# Build Cache # | ||
#---------------------------------# | ||
cache: | ||
- src\packages -> src\**\packages.config | ||
- tools -> setup.cake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
issue-labels-include: | ||
- Breaking change | ||
- Feature | ||
- Bug | ||
- Improvement | ||
- Documentation | ||
issue-labels-exclude: | ||
- Build | ||
issue-labels-alias: | ||
- name: Documentation | ||
header: Documentation | ||
plural: Documentation |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,42 @@ | ||
# cake-gulp | ||
# Cake.Gulp | ||
|
||
## Usage | ||
Cake.Gulp is a set of aliases for Cake to help with running Gulp scripts as part of a build. | ||
|
||
```c# | ||
#addin "Cake.Gulp" | ||
[![License](http://img.shields.io/:license-mit-blue.svg)](http://cake-contrib.mit-license.org) | ||
|
||
Task("Default") | ||
.Does(() => | ||
{ | ||
// Executes gulp from a global installation (npm install -g gulp) | ||
Gulp.Global.Execute(); | ||
## Information | ||
|
||
// Executes gulp from a local installation (npm install gulp) | ||
Gulp.Local.Execute(); | ||
}); | ||
``` | ||
| | Stable | Pre-release | | ||
|---|---|---| | ||
|GitHub Release|-|[![GitHub release](https://img.shields.io/github/release/cake-contrib/Cake.Gulp.svg)](https://github.com/cake-contrib/Cake.Gulp/releases/latest)| | ||
|NuGet|[![NuGet](https://img.shields.io/nuget/v/Cake.Gulp.svg)](https://www.nuget.org/packages/Cake.Gulp)|[![NuGet](https://img.shields.io/nuget/vpre/Cake.Gulp.svg)](https://www.nuget.org/packages/Cake.Gulp)| | ||
|
||
## Scope | ||
## Build Status | ||
|
||
Cake.Gulp currently supports the following npm commands: | ||
|Develop|Master| | ||
|:--:|:--:| | ||
|[![Build status](https://ci.appveyor.com/api/projects/status/0tbbj0v683qf39oo/branch/develop?svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-gulp/branch/develop)|[![Build status](https://ci.appveyor.com/api/projects/status/0tbbj0v683qf39oo/branch/develop?svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-gulp/branch/master)| | ||
|
||
* Executing gulp from a local installation with arguments | ||
* Executing gulp from a global installation with arguments | ||
## Code Coverage | ||
|
||
My primary goal for the project is to support the build workflow I need as a .NET developer. | ||
[![Coverage Status](https://coveralls.io/repos/github/cake-contrib/Cake.Gulp/badge.svg?branch=develop)](https://coveralls.io/github/cake-contrib/Cake.Gulp?branch=develop) | ||
|
||
Cake.Gulp will most likely be paired with [Cake.Npm](https://github.com/Philo/cake-npm) to support the installation of gulp itself along with any dependencies your gulp file requires. | ||
## Quick Links | ||
|
||
## Tests | ||
- [Documentation](https://cake-contrib.github.io/Cake.Gulp) | ||
|
||
Cake.Gulp is covered by a set of unit tests contributed by @nengberg | ||
## Chat Room | ||
|
||
## I cant do _<insert-function-here_ | ||
Come join in the conversation about Cake.Gulp in our Gitter Chat Room | ||
|
||
See above, the initial release supports only the most basic functionality I need, if you have feature requests please submit them as issues | ||
[![Join the chat at https://gitter.im/cake-contrib/Lobby](https://badges.gitter.im/cake-contrib/Lobby.svg)](https://gitter.im/cake-contrib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
|
||
## Build | ||
|
||
To build this package we are using Cake. | ||
|
||
On Windows PowerShell run: | ||
|
||
```powershell | ||
./build | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.