Compare commits

...

2 Commits

Author SHA1 Message Date
Fabian Stamm e15ce1f0a0 Fix more 2023-11-30 00:16:53 +01:00
Fabian Stamm f93755604a Improve esm compatability 2023-11-30 00:13:10 +01:00
4 changed files with 9 additions and 11 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/jrpcgen",
"version": "1.2.14",
"version": "1.2.16",
"main": "lib/index.js",
"license": "MIT",
"packageManager": "yarn@3.1.1",
@ -48,4 +48,4 @@
"dependencies": {
"fs-extra": "^10.0.0"
}
}
}

View File

@ -33,7 +33,7 @@ export class TypescriptTarget extends CompileTarget {
}
private generateImport(imports: string, path: string) {
return `import ${imports} from "${path + (this.flavour === "esm" ? ".ts" : "")
return `import ${imports} from "${path + (this.flavour === "esm" ? ".js" : "")
}";\n`;
}
@ -207,7 +207,7 @@ export class TypescriptTarget extends CompileTarget {
this.writeFormattedFile(
"service_client.ts",
this.generateImport(
"{ RequestObject, ResponseObject, ErrorCodes, Logging }",
"{ type RequestObject, type ResponseObject, ErrorCodes, Logging }",
"./service_base"
) +
this.generateImport(" { VerificationError }", "./ts_base") +
@ -304,7 +304,7 @@ export class TypescriptTarget extends CompileTarget {
this.writeFormattedFile(
"service_server.ts",
this.generateImport(
"{ RequestObject, ResponseObject, ErrorCodes, Logging }",
"{ type RequestObject, type ResponseObject, ErrorCodes, Logging }",
"./service_base"
) +
this.generateImport(" { VerificationError }", "./ts_base") +

View File

@ -1,5 +1,3 @@
import { isGeneratorFunction } from "util/types";
function form_verficiation_error_message(type?: string, field?: string) {
let msg = "Parameter verification failed! ";
if (type && field) {

View File

@ -1,14 +1,14 @@
//@template-ignore
import { VerificationError } from "./ts_base";
//@template-ignore
import { RequestObject, ResponseObject, ErrorCodes, Logging } from "./ts_service_base";
import { type RequestObject, type ResponseObject, ErrorCodes, Logging } from "./ts_service_base";
export class Service<T> {
public name: string = null as any;
public functions = new Set<string>();
constructor() {}
constructor() { }
}
type ISendMessageCB = (data: any, catchedErr?: Error) => void;
@ -37,7 +37,7 @@ class Session<T> {
this.ctx = ctx || {};
}
send(data: any, catchedErr?:Error) {
send(data: any, catchedErr?: Error) {
Logging.log("SERVER: Sending Message", data)
this._send(data, catchedErr);
}
@ -95,7 +95,7 @@ class Session<T> {
}
let result = await (service as any)["_" + fncName](data.params, this.ctx);
if(data.id) { //Request
if (data.id) { //Request
this.send({
jsonrpc: "2.0",
id: data.id,