File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import { version } from "../package.json"
1212import * as util from "../src/utilities/cliUtil"
1313
1414async function handleInitCommand ( ) {
15- const editedSam = ( < string > ( < unknown > await util . confirmation ( ) ) )
16- if ( editedSam === "create predefined SAM project" ) {
15+ const editedSam = < string > ( < unknown > await util . confirmation ( ) )
16+ if ( editedSam === "create new SAM project" ) {
1717 await createSAMCLI ( )
1818 } else if ( editedSam === "create custom SAM project" ) {
1919 await createCustomSAMCLI ( )
Original file line number Diff line number Diff line change 11{
22 "devDependencies" : {
3- "@types/node" : " ^12.12.7 " ,
3+ "@types/node" : " ^12.20.55 " ,
44 "@typescript-eslint/eslint-plugin" : " ^5.45.0" ,
55 "eslint" : " ^8.28.0" ,
66 "eslint-config-standard-with-typescript" : " ^23.0.0" ,
1212 "typescript" : " ^4.9.3"
1313 },
1414 "dependencies" : {
15- "@iarna/toml" : " ^2.2.5" ,
1615 "@rover-tools/engine" : " file:../rover-engine" ,
1716 "@types/inquirer" : " ^8.2.1" ,
1817 "dotenv" : " ^16.0.3" ,
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export const confirmation = async function () {
141141 name : "choice" ,
142142 message : `Hey, what do you want ?` ,
143143 choices : [
144- "create predefined SAM project" ,
144+ "create new SAM project" ,
145145 "create custom SAM project" ,
146146 "add components to existing SAM" ,
147147 "add modules to existing SAM" ,
You can’t perform that action at this time.
0 commit comments