Skip to content

Commit b5ab079

Browse files
authored
Merge pull request #93 from fratzinger/type-BlobResult-contentType
Type blob result content type & housekeeping
2 parents ea21c13 + b6ffda7 commit b5ab079

File tree

11 files changed

+10751
-3655
lines changed

11 files changed

+10751
-3655
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [12.x, 14.x, 15.x]
14+
node-version: [12.x, 14.x, 16.x]
1515
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1616

1717
steps:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ lib-cov
1414

1515
# Coverage directory used by tools like istanbul
1616
coverage
17+
.nyc_output
1718

1819
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
1920
.grunt

.istanbul.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.npmignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

examples/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const blobService = BlobService({
1919
});
2020

2121
// Create a feathers instance.
22-
var app = express(feathers())
22+
const app = express(feathers())
2323
// Turn on JSON parser for REST services
2424
.use(express.json())
2525
// Turn on URL-encoded parser for REST services

mocha.opts

Lines changed: 0 additions & 2 deletions
This file was deleted.

mocharc.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
'use strict';
2+
const path = require('path');
3+
4+
module.exports = {
5+
package: path.join(__dirname, './package.json'),
6+
ui: 'bdd',
7+
spec: [
8+
'./test/**/*.test.js'
9+
],
10+
timeout: 20000
11+
};

nycrc.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"check-coverage": true,
3+
"include": [
4+
"lib/**/*.js"
5+
],
6+
"reporter": [
7+
"html",
8+
"text",
9+
"text-summary",
10+
"lcov"
11+
],
12+
"watermarks": {
13+
"statements": [50, 80],
14+
"lines": [50, 80],
15+
"functions": [50, 80],
16+
"branches": [50, 80]
17+
}
18+
}

0 commit comments

Comments
 (0)