1
0
Fork 0

inherited designs all use base templates

This commit is contained in:
Enoch Riese 2022-11-29 16:10:19 -06:00
parent 6c901e80eb
commit af4185b126
31 changed files with 108 additions and 2729 deletions

View file

@ -1,15 +1,9 @@
import { banner } from './banner.mjs'
import {
checkNodeVersion,
getChoices,
createEnvironment,
} from './utils.mjs'
// import { banner } from './banner.mjs'
import { checkNodeVersion, getChoices, createEnvironment } from './utils.mjs'
export const cli = async () => {
// Make it pretty
console.log(banner+"\n")
// console.log(banner+"\n")
// Make sure we have a valid NodeJS version
checkNodeVersion()
@ -20,4 +14,3 @@ export const cli = async () => {
// Create environment from template
createEnvironment(choices)
}