Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Radu1990 committed Jan 14, 2020
1 parent 2c0512e commit e409816
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@restorecommerce/resource-base-interface",
"version": "0.0.1",
"description": "Restore Commerce Resource Base Interface",
"main": "lib/src/index.js",
"main": "lib/index.js",
"author": "Invend GmbH",
"repository": {
"type": "git",
Expand Down Expand Up @@ -48,7 +48,7 @@
},
"scripts": {
"test": "npm run lint && nyc npm run mocha",
"lint": "eslint './src/**/*.ts' ",
"lint": "eslint 'core/**/*.ts' ",
"mocha": "cross-env NODE_ENV=test; mocha -R spec ./lib/test/*.js --exit",
"test-debug": "npm run lint && npm run mocha-debug",
"mocha-debug": "cross-env NODE_ENV=test; mocha ./lib/test/*_test.js --inspect-brk --exit",
Expand Down
1 change: 0 additions & 1 deletion src/something.ts

This file was deleted.

8 changes: 4 additions & 4 deletions test/crud_test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use strict';

import * as mocha from 'mocha';
import { ServiceBase } from '../src';
import { ResourcesAPIBase } from '../src';
import { toStruct } from '../src';
import { toObject } from '../src';
import { ServiceBase } from '../core';
import { ResourcesAPIBase } from '../core';
import { toStruct } from '../core';
import { toObject } from '../core';
import * as chassis from '@restorecommerce/chassis-srv';
import { Client } from '@restorecommerce/grpc-client';
import { Events, Topic } from '@restorecommerce/kafka-client';
Expand Down
6 changes: 3 additions & 3 deletions test/graph_traversal_test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

import * as mocha from 'mocha';
import { GraphResourcesServiceBase } from '../src';
import { ResourcesAPIBase } from '../src';
import { ServiceBase } from '../src';
import { GraphResourcesServiceBase } from '../core';
import { ResourcesAPIBase } from '../core';
import { ServiceBase } from '../core';
import * as chassis from '@restorecommerce/chassis-srv';
import { Client } from '@restorecommerce/grpc-client';
import { Database } from 'arangojs';
Expand Down

0 comments on commit e409816

Please sign in to comment.