@sellout/service 0.0.1 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@sellout/service",
3
- "version": "0.0.1",
3
+ "version": "0.0.4",
4
4
  "description": "Sellout.io base service",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
+ "prepare": "npm run build",
7
8
  "build": "tsc --project . && cp -r src/build .dist",
8
9
  "start": "nodemon --watch src -e json,js,ts -x \"npm run build\""
9
10
  },
@@ -14,8 +15,8 @@
14
15
  "author": "samheutmaker@gmail.com",
15
16
  "license": "MIT",
16
17
  "dependencies": {
17
- "@sellout/models": "^0.0.1",
18
- "@sellout/utils": "^0.0.1",
18
+ "@sellout/models": "^0.0.4",
19
+ "@sellout/utils": "^0.0.4",
19
20
  "@sentry/node": "^5.14.2",
20
21
  "analytics-node": "^3.4.0-beta.1",
21
22
  "express": "^4.17.1",
@@ -30,5 +31,5 @@
30
31
  "nodemon": "^2.0.2",
31
32
  "typescript": "^3.8.3"
32
33
  },
33
- "gitHead": "5f577126fcc59699bc5447b62f0ee56aa4b9759b"
34
+ "gitHead": "d36767558266a771f23bb068af3eb93650f511d6"
34
35
  }
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
  import * as NATS from 'nats';
3
- import { IConnectionManager, ILogManager, ISubscriptionRoutes } from '@sellout/models/.dist/interfaces';
3
+ import { IConnectionManager, ILogManager, ISubscriptionRoutes } from './interfaces';
4
4
 
5
5
  const BROADCAST_PREFIX = 'BROADCAST'; /* Prefix for broadcast messages */
6
6
 
@@ -1,5 +1,5 @@
1
1
  import { Broadcast } from "@sellout/models/.dist/sellout-proto";
2
- import { IConnectionManager } from '@sellout/models/.dist/interfaces';
2
+ import { IConnectionManager } from './interfaces';
3
3
  import { PbServiceProxy } from './PbServiceProxy';
4
4
 
5
5
  export default class PbBroadcastProxy extends PbServiceProxy<Broadcast.Publisher> {