small fixes for the imports

This commit is contained in:
Martin Karkowski 2022-06-22 20:10:53 +02:00
parent 02c7ac9e5d
commit ab6085a7e3
9 changed files with 40 additions and 12 deletions

View File

@ -86,3 +86,7 @@ Inital commit, which is working with the browser
- dispatchers.ConnectivityManager.ConnectivityManager.spec: - dispatchers.ConnectivityManager.ConnectivityManager.spec:
- Added test for forced masters. - Added test for forced masters.
- helpers.arrayMethods: Added Typings for `minOfArray` - helpers.arrayMethods: Added Typings for `minOfArray`
# 1.0.36
- Fixes:
- Small fixes in the imports of some items in `module.BaseModule.injectable`; `module.GenericWrapper.injectable`; `helpers.descriptors` to make shure, the `nope.d.ts` for the browser is compiled.

View File

@ -1 +1 @@
1.0.35 1.0.36

View File

@ -3,7 +3,7 @@
* @email m.karkowski@zema.de * @email m.karkowski@zema.de
*/ */
import { INopeDescriptor } from "../index.browser"; import { INopeDescriptor } from "../types/nope";
import { isJsonSchema } from "./jsonSchemaMethods"; import { isJsonSchema } from "./jsonSchemaMethods";
import { SPLITCHAR } from "./objectMethods"; import { SPLITCHAR } from "./objectMethods";

View File

@ -4,9 +4,8 @@
*/ */
import { inject, injectable } from "inversify"; import { inject, injectable } from "inversify";
import { INopeCore } from "../index.browser";
import { DISPATCHER_INSTANCE } from "../symbols/identifiers"; import { DISPATCHER_INSTANCE } from "../symbols/identifiers";
import { INopeModule } from "../types/nope/nopeModule.interface"; import { INopeCore } from "../types";
import { NopeBaseModule } from "./BaseModule"; import { NopeBaseModule } from "./BaseModule";
/** /**

View File

@ -4,7 +4,7 @@
*/ */
import { inject, injectable } from "inversify"; import { inject, injectable } from "inversify";
import { INopeCore } from "../index.browser"; import { INopeCore } from "../types/nope";
import { import {
DISPATCHER_INSTANCE, DISPATCHER_INSTANCE,
OBSERVABLE_FACTORY, OBSERVABLE_FACTORY,

View File

@ -5,9 +5,7 @@
import { deepClone } from "../helpers/objectMethods"; import { deepClone } from "../helpers/objectMethods";
import { getNopeLogger } from "../logger/getLogger"; import { getNopeLogger } from "../logger/getLogger";
import { INopeCore } from "../types/nope"; import { ICallOptions, INopeCore } from "../types";
import { ICallOptions } from "../types/nope/nopeCommunication.interface";
import { INopeDispatcher } from "../types/nope/nopeDispatcher.interface";
import { import {
IEventOptions, IEventOptions,
IFunctionOptions, IFunctionOptions,

View File

@ -1,11 +1,10 @@
/** /**
* @author Martin Karkowski * @author Martin Karkowski
* @email m.karkowski@zema.de * @email m.karkowski@zema.de
* @create date 2021-08-27 20:24:15
* @modify date 2021-08-27 20:24:15
* @desc [description] * @desc [description]
*/ */
import * as nope from "./nope/index"; import * as nope from "./nope/index";
export * from "./nope/index";
export * from "./IJSONSchema"; export * from "./IJSONSchema";
export { nope }; export { nope };

View File

@ -1,6 +1,6 @@
{ {
"name": "nope", "name": "nope",
"version": "1.0.34", "version": "1.0.35",
"description": "NoPE Runtime for Nodejs. For Browser-Support please use nope-browser", "description": "NoPE Runtime for Nodejs. For Browser-Support please use nope-browser",
"files": [ "files": [
"dist-nodejs/**/*", "dist-nodejs/**/*",

28
tsconfig.py.json Normal file
View File

@ -0,0 +1,28 @@
{
"compilerOptions": {
"target": "ES5",
"allowJs": true,
"allowUnusedLabels": true,
"charset": "utf-8",
"experimentalDecorators": true,
"module": "None",
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": true,
"outDir": "./dist-py",
"pretty": false,
"removeComments": false,
"stripInternal": true,
"downlevelIteration": true,
"noImplicitAny": false,
"declaration": true
},
"include": [
"lib",
],
"exclude": [
"node_modules",
"temp",
"dist-nodejs",
"dist-browser"
]
}