From b0fd0c74f44f2280565c74338dbedcc2caa743df Mon Sep 17 00:00:00 2001 From: Richard Zampieri Date: Wed, 31 May 2023 18:18:57 -0700 Subject: [PATCH] fix: update package CLI version --- src/cli.ts | 3 +-- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cli.ts b/src/cli.ts index 395d9f2..97ec666 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -5,9 +5,8 @@ import { hideBin } from "yargs/helpers"; import { generateProject } from "./generate"; import { infoProject } from "./info"; import { createProject } from "./new"; -import * as pkg from "../package.json"; -export const CLI_VERSION = pkg.version; +export const CLI_VERSION = "1.3.0-rc-1"; console.log(`\n[🐎 Expressots]\n`); diff --git a/tsconfig.json b/tsconfig.json index 08e9862..7cc6e3c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "declaration": true, "esModuleInterop": true, "moduleResolution": "node", - "resolveJsonModule": true, + "resolveJsonModule": false, "target": "ES2017", "lib": ["ES2017"], "outDir": "bin",