Skip to content

Commit

Permalink
Fix: src to lib
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrovskiy committed Mar 13, 2017
1 parent 56e28e2 commit 1a5a0da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 41 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "feathers-multi-service",
"description": "A Feathers service wrapper to use multiple services under one",
"version": "0.0.1",
"version": "0.0.2",
"homepage": "https://github.com/dmitrovskiy/feathers-multi-service",
"main": "lib/",
"keywords": [
Expand Down Expand Up @@ -34,7 +34,7 @@
"ava": "ava -v ./test/**/**/*.test.js",
"build": "redrun clean babel",
"clean": "del ./dist",
"babel": "babel --source-maps --copy-files -d dist/ src/"
"babel": "babel --source-maps --copy-files -d dist/ lib/"
},
"ava": {
"babel": "inherit",
Expand Down
38 changes: 0 additions & 38 deletions src/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava';
import { assert } from 'chai';
import service from '../src/index';
import service from '../lib/index';

test('should throw error without options', () => {
assert.throws(() => service(), 'options must be set');
Expand Down

0 comments on commit 1a5a0da

Please sign in to comment.