mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-01-09 13:36:47 -06:00
commit
317b2b31bd
@ -14,6 +14,15 @@ const runCommand = command => {
|
||||
return true;
|
||||
}
|
||||
|
||||
const runCommandWithOutput = command => {
|
||||
try{
|
||||
return execSync(`${command}`);
|
||||
} catch (e) {
|
||||
console.error(`Failed to execute ${command}`, e);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
const replaceTextOnFile = ({
|
||||
file,
|
||||
textToBeReplaced,
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@aleleba/create-node-ts-graphql-server",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "Node with Typescript and GraphQL Server",
|
||||
"bin": "./bin/cli.js",
|
||||
"main": "index.js",
|
||||
|
Loading…
Reference in New Issue
Block a user