File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 38
38
"contributors" : [" Chris Breuer <chris@stacksjs.org>" ],
39
39
"files" : [" README.md" , " dist" , " src" ],
40
40
"scripts" : {
41
- "bootstrap" : " npx cdk bootstrap" ,
42
- "deploy" : " cd .. && bun run build && cd ./docs && bun run build && cd ../cloud && npx cdk deploy --require-approval never" ,
41
+ "bootstrap" : " bunx cdk bootstrap" ,
42
+ "deploy" : " cd .. && bun run build && cd ./docs && bun run build && cd ../cloud && bunx cdk deploy --require-approval never" ,
43
43
"dev" : " ./dev local"
44
44
},
45
45
"dependencies" : {
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export function cloud(buddy: CLI) {
110
110
}
111
111
112
112
if ( options . diff ) {
113
- const result = await runCommand ( 'npx cdk diff' , {
113
+ const result = await runCommand ( 'bunx cdk diff' , {
114
114
cwd : p . frameworkCloudPath ( ) ,
115
115
stdin : 'pipe' ,
116
116
} )
@@ -238,7 +238,7 @@ export function cloud(buddy: CLI) {
238
238
// sleep for 2 seconds to get the user to read the message
239
239
await new Promise ( ( resolve ) => setTimeout ( resolve , 2000 ) )
240
240
241
- const result = await runCommand ( `npx cdk destroy` , {
241
+ const result = await runCommand ( `bunx cdk destroy` , {
242
242
...options ,
243
243
cwd : p . frameworkCloudPath ( ) ,
244
244
stdin : 'inherit' ,
@@ -508,7 +508,7 @@ export function cloud(buddy: CLI) {
508
508
509
509
const startTime = await intro ( 'buddy cloud:diff' )
510
510
511
- const result = await runCommand ( 'npx cdk diff' , {
511
+ const result = await runCommand ( 'bunx cdk diff' , {
512
512
cwd : p . frameworkCloudPath ( ) ,
513
513
stdin : 'pipe' ,
514
514
} )
Original file line number Diff line number Diff line change 39
39
"contributors" : [" Chris Breuer <chris@stacksjs.org>" ],
40
40
"files" : [" README.md" , " dist" , " src" ],
41
41
"scripts" : {
42
- "bootstrap" : " npx cdk bootstrap" ,
43
- "deploy" : " cd ../.. && bun run build && cd ../docs && bun run build && cd ../core/cloud && npx cdk deploy --require-approval never" ,
42
+ "bootstrap" : " bunx cdk bootstrap" ,
43
+ "deploy" : " cd ../.. && bun run build && cd ../docs && bun run build && cd ../core/cloud && bunx cdk deploy --require-approval never" ,
44
44
"build" : " bun build.ts" ,
45
45
"build-edge" : " bun build ./src/edge/origin-request.ts --outfile ./dist/origin-request.js" ,
46
46
"typecheck" : " bun --bun tsc --noEmit" ,
Original file line number Diff line number Diff line change 31
31
"vscode" : " ^1.93.0"
32
32
},
33
33
"scripts" : {
34
- "package" : " npx vsce package" ,
35
- "release" : " npx vsce publish"
34
+ "package" : " bunx vsce package" ,
35
+ "release" : " bunx vsce publish"
36
36
},
37
37
"galleryBanner" : {
38
38
"color" : " #d7e4f5" ,
You can’t perform that action at this time.
0 commit comments