Skip to content
This repository was archived by the owner on Aug 29, 2018. It is now read-only.
Merged
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
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store

# Logs
logs
*.log
Expand Down Expand Up @@ -27,5 +29,4 @@ node_modules
# Users Environment Variables
.lock-wscript

# The compiled/babelified modules
lib/
dist/
6 changes: 2 additions & 4 deletions .istanbul.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
verbose: false
instrumentation:
root: ./src/
excludes:
- lib/
root: ./lib/
include-all-sources: true
reporting:
print: summary
Expand All @@ -14,4 +12,4 @@ reporting:
statements: [50, 80]
lines: [50, 80]
functions: [50, 80]
branches: [50, 80]
branches: [50, 80]
6 changes: 3 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.editorconfig
.jshintrc
.travis.yml
.istanbul.yml
.babelrc
.idea/
src/
.vscode/
test/
!lib/
coverage/
.github/
coverage
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: node_js
node_js:
- node
- '6'
- '4'
addons:
code_climate:
repo_token: d9f42f8f2e37d2901823173fc96052de64f71b273a9320377cb11f5f878a7928
Expand Down
4 changes: 0 additions & 4 deletions client.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion client.js

This file was deleted.

4 changes: 0 additions & 4 deletions index.d.ts

This file was deleted.

14 changes: 7 additions & 7 deletions src/index.js → lib/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import makeDebug from 'debug';
import Proto from 'uberproto';
import socket from 'feathers-socket-commons';
import Primus from 'primus';
import Emitter from 'primus-emitter';
const makeDebug = require('debug');
const Proto = require('uberproto');
const socket = require('feathers-socket-commons');
const Primus = require('primus');
const Emitter = require('primus-emitter');

const debug = makeDebug('feathers-primus');

export default function (config, configurer) {
module.exports = function (config, configurer) {
return function () {
const app = this;

Expand Down Expand Up @@ -57,4 +57,4 @@ export default function (config, configurer) {
}
}, app);
};
}
};
1 change: 0 additions & 1 deletion mocha.opts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
--recursive test/
--compilers js:babel-core/register
--exit
Loading