Skip to content

Commit

Permalink
Merge pull request #19 from kbarbounakis/18-module-service-not-found
Browse files Browse the repository at this point in the history
correct module import
  • Loading branch information
kbarbounakis authored Mar 26, 2020
2 parents 191c2f1 + efc8417 commit cff7469
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/@themost/express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@themost/express",
"version": "1.5.4",
"version": "1.5.5",
"description": "MOST Data ORM Express Middleware",
"main": "dist/themost_express.cjs.js",
"types": "dist/themost_express.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions modules/@themost/express/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import Symbol from "symbol";
import {Args, ConfigurationBase, ApplicationService, IApplication} from "@themost/common";
import {DefaultDataContext, DataConfigurationStrategy, ODataConventionModelBuilder, ODataModelBuilder} from "@themost/data";
import {ServicesConfiguration} from "./configuration";
import {serviceRouter} from './service';
import {BehaviorSubject} from 'rxjs';

const configurationProperty = Symbol('configuration');
const applicationProperty = Symbol('application');
const unattendedProperty = Symbol('unattended');
const { serviceRouter } = require('./service');
const { BehaviorSubject } = require ('rxjs');

/**
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "most-data-express-src",
"version": "1.5.4",
"version": "1.5.5",
"private": true,
"description": "MOST Data ORM Express Middleware",
"main": "index.js",
Expand Down

0 comments on commit cff7469

Please sign in to comment.