Skip to content

Commit

Permalink
feat: enable Deno KV in sandbox
Browse files Browse the repository at this point in the history
- fixes #125
  • Loading branch information
teleclimber committed May 10, 2024
1 parent 55cedec commit c1f4c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ds-host/sandbox/sandbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ func (s *Sandbox) doStart() error {
tStr += fmt.Sprintf(" Start Twine: %s", time.Since(tRef))

denoEnvs := []envkv{{"NO_COLOR", "true"}}
denoArgs := []string{"run"}
denoArgs := []string{"run", "--unstable-kv"}

if s.inspect {
denoArgs = append(denoArgs, "--inspect-brk")
Expand Down

0 comments on commit c1f4c3a

Please sign in to comment.