Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to paypal #34

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# grunt-loop-mocha Changes

## v1.2.2

* documentation for `mocha_bin` feature. See: https://github.com/grawk/grunt-loop-mocha/pull/31
* update peer dependency on grunt to support grunt 1.0: https://github.com/grawk/grunt-loop-mocha/pull/33
* add contributors to package.json

## v1.2.1

* **Enhancement** remove manual directory creation for the xunit-file case since xunit-file now handles that internally
Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"name": "grunt-loop-mocha",
"description": "A loop wrapper for initiating multiple mocha runs from one task target",
"version": "1.2.1",
"version": "1.2.2",
"homepage": "https://github.com/grawk/grunt-loop-mocha",
"author": {
"name": "Matt Edelman",
"email": "mattedelman@gmail.com",
"url": "https://github.com/grawk"
},
"contributors": [
"seebees",
"viswanathankasi"
],
"repository": {
"type": "git",
"url": "git://github.com/grawk/grunt-loop-mocha.git"
Expand All @@ -19,6 +23,10 @@
{
"type": "MIT",
"url": "https://github.com/grawk/grunt-loop-mocha/blob/master/LICENSE-MIT"
},
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"main": "Gruntfile.js",
Expand Down
14 changes: 14 additions & 0 deletions tasks/loop-mocha.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*───────────────────────────────────────────────────────────────────────────*\
│ Copyright (C) 2016 PayPal │
│ │
│ │
│ Licensed under the Apache License, Version 2.0 (the "License"); you may │
│ not use this file except in compliance with the License. You may obtain │
│ a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 │
│ │
│ Unless required by applicable law or agreed to in writing, software │
│ distributed under the License is distributed on an "AS IS" BASIS, │
│ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. │
│ See the License for the specific language governing permissions and │
│ limitations under the License. │
\*───────────────────────────────────────────────────────────────────────────*/
/*
* grunt-loop-mocha
* https://github.com/grawk/grunt-loop-mocha
Expand Down
15 changes: 15 additions & 0 deletions tasks/process-loop.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*───────────────────────────────────────────────────────────────────────────*\
│ Copyright (C) 2016 PayPal │
│ │
│ │
│ Licensed under the Apache License, Version 2.0 (the "License"); you may │
│ not use this file except in compliance with the License. You may obtain │
│ a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 │
│ │
│ Unless required by applicable law or agreed to in writing, software │
│ distributed under the License is distributed on an "AS IS" BASIS, │
│ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. │
│ See the License for the specific language governing permissions and │
│ limitations under the License. │
\*───────────────────────────────────────────────────────────────────────────*/

'use strict';

var spawn = require("child_process").spawn;
Expand Down