File tree 2 files changed +6
-6
lines changed
test/programmatic/__snapshots__
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ const bun = {
39
39
'frozen' : 'bun install --no-save' ,
40
40
'global' : 'bun add -g {0}' ,
41
41
'add' : 'bun add {0}' ,
42
- 'upgrade' : null ,
43
- 'upgrade-interactive' : null ,
42
+ 'upgrade' : 'bun update {0}' ,
43
+ 'upgrade-interactive' : 'bun update {0}' ,
44
44
'execute' : 'bunx {0}' ,
45
45
'uninstall' : 'bun remove {0}' ,
46
46
'global_uninstall' : 'bun remove -g {0}' ,
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ exports[`lockfile > bun > ni foo 1`] = `"bun add foo"`;
16
16
17
17
exports [` lockfile > bun > nlx 1` ] = ` "bunx foo"` ;
18
18
19
- exports [` lockfile > bun > nu -i 1` ] = ` "Command \\ "upgrade-interactive \\ " is not support by agent \\ " bun\\ " "` ;
19
+ exports [` lockfile > bun > nu -i 1` ] = ` "bun update "` ;
20
20
21
- exports [` lockfile > bun > nu 1` ] = ` "Command \\ "upgrade \\ " is not support by agent \\ " bun\\ " "` ;
21
+ exports [` lockfile > bun > nu 1` ] = ` "bun update "` ;
22
22
23
23
exports [` lockfile > bun > nun -g foo 1` ] = ` "bun remove -g foo"` ;
24
24
@@ -184,9 +184,9 @@ exports[`packager > bun > ni foo 1`] = `"bun add foo"`;
184
184
185
185
exports [` packager > bun > nlx 1` ] = ` "bunx foo"` ;
186
186
187
- exports [` packager > bun > nu -i 1` ] = ` "Command \\ "upgrade-interactive \\ " is not support by agent \\ " bun\\ " "` ;
187
+ exports [` packager > bun > nu -i 1` ] = ` "bun update "` ;
188
188
189
- exports [` packager > bun > nu 1` ] = ` "Command \\ "upgrade \\ " is not support by agent \\ " bun\\ " "` ;
189
+ exports [` packager > bun > nu 1` ] = ` "bun update "` ;
190
190
191
191
exports [` packager > bun > nun -g foo 1` ] = ` "bun remove -g foo"` ;
192
192
You can’t perform that action at this time.
0 commit comments