PR-601212: fixing npx.

This commit is contained in:
Alejandro Lembke Barrientos 2022-08-02 07:28:56 +00:00
parent 4e19c16e78
commit 94b6dde8d3
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
#!/usr/bin/env node #!/usr/bin/env node
const { execSync } = require('child_process'); const { execSync } = require('child_process');
const isWin = process.platform === "win32";
const runCommand = command => { const runCommand = command => {
try{ try{

View File

@ -1,6 +1,6 @@
{ {
"name": "@aleleba/create-node-ts-graphql-server", "name": "@aleleba/create-node-ts-graphql-server",
"version": "1.1.0", "version": "1.1.1",
"description": "Node with Typescript and GraphQL Server", "description": "Node with Typescript and GraphQL Server",
"bin": "./bin/cli.js", "bin": "./bin/cli.js",
"main": "index.js", "main": "index.js",