From 94b6dde8d3ae4ad09ec484293996709ccc55855f Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Tue, 2 Aug 2022 07:28:56 +0000 Subject: [PATCH] PR-601212: fixing npx. --- bin/cli.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cli.js b/bin/cli.js index df4efdf..986bd0f 100644 --- a/bin/cli.js +++ b/bin/cli.js @@ -1,5 +1,6 @@ #!/usr/bin/env node const { execSync } = require('child_process'); +const isWin = process.platform === "win32"; const runCommand = command => { try{ diff --git a/package.json b/package.json index 897b6c8..921bc78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aleleba/create-node-ts-graphql-server", - "version": "1.1.0", + "version": "1.1.1", "description": "Node with Typescript and GraphQL Server", "bin": "./bin/cli.js", "main": "index.js",