proto_ts_schema
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -111,3 +111,3 @@ "use strict"; | ||
function showHelp() { | ||
const applicationName = "Proto to TS"; | ||
const applicationName = "Proto to TS Schema"; | ||
const optionsDescription = { | ||
@@ -114,0 +114,0 @@ config: "Path to the config file which must be in js/ts format. (default: CWD/p2t.js)", |
{ | ||
"name": "proto_ts_schema", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "proto to ts schema compiler/transpiler.", | ||
@@ -14,3 +14,3 @@ "main": "dist/index.js", | ||
"type": "git", | ||
"url": "git+https://github.com/iambpn/proto_to_ts.git" | ||
"url": "git+https://github.com/iambpn/proto_to_ts_schema.git" | ||
}, | ||
@@ -34,5 +34,5 @@ "keywords": [ | ||
"bugs": { | ||
"url": "https://github.com/iambpn/proto_to_ts/issues" | ||
"url": "https://github.com/iambpn/proto_to_ts_schema/issues" | ||
}, | ||
"homepage": "https://github.com/iambpn/proto_to_ts#readme", | ||
"homepage": "https://github.com/iambpn/proto_to_ts_schema#readme", | ||
"devDependencies": { | ||
@@ -39,0 +39,0 @@ "@types/command-line-args": "^5.2.0", |
@@ -1,8 +0,8 @@ | ||
# proto_to_ts | ||
# proto_to_ts_schema | ||
proto to ts schema compiler. | ||
proto to ts schema compiler/transpiler. | ||
## Usage | ||
Proto to TS | ||
Proto to TS Schema | ||
@@ -21,3 +21,3 @@ `config`: Path to the config file which must be in js/ts format. (default: CWD/p2t.js) usage: --config [-c] | ||
install package globally: `npm i -g proto_to_ts`. | ||
install package globally: `npm i -g proto_ts_schema`. | ||
@@ -31,3 +31,3 @@ - To show help docs: `p2ti -h` | ||
rpcFuncReturn: undefined, // Function (type:string) =>string | ||
imports: [], // additional imports to include in TS file. Options: Array<string> | undefined | ||
imports: [], // Additional imports to include in TS file. Options: Array<string> | undefined | ||
}; | ||
@@ -34,0 +34,0 @@ ``` |
@@ -78,3 +78,3 @@ import * as fs from "fs/promises"; | ||
function showHelp() { | ||
const applicationName = "Proto to TS"; | ||
const applicationName = "Proto to TS Schema"; | ||
@@ -81,0 +81,0 @@ const optionsDescription: { [x in OptionKeys]: string } = { |
99276