Skip to content

Commit 29580c5

Browse files
committed
fix: ignore nyc
1 parent 932fdd1 commit 29580c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules
22
package-lock.json
33
.DS_Store
4-
.nyc
4+
.nyc_output

lib/augmenters/pipeline.js renamed to lib/augmenters/sequential.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const hasard = require('hasard');
22

3-
class Pipeline {
3+
class Sequential {
44
constructor(array) {
55
this.conf = array;
66
}
@@ -33,4 +33,4 @@ class Pipeline {
3333
return promise;
3434
}
3535
}
36-
module.exports = Pipeline;
36+
module.exports = Sequential;

0 commit comments

Comments
 (0)