Skip to content

Commit

Permalink
PR Review changes applied
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMGEvans committed Mar 21, 2022
1 parent 4766c27 commit 3fe320a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/wrangler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
"bin",
"pages",
"miniflare-config-stubs",
"miniflare-dist",
"wrangler-dist",
"templates",
"vendor",
Expand Down
4 changes: 2 additions & 2 deletions packages/wrangler/src/dev/local.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function useLocalWorker({
)
),
durableObjectsPersist: enableLocalPersistence,
cachePersist: !enableLocalPersistence,
cachePersist: enableLocalPersistence,
sitePath: assetPaths?.assetDirectory,
siteInclude: assetPaths?.includePatterns.length
? assetPaths?.includePatterns
Expand Down Expand Up @@ -148,7 +148,7 @@ function useLocalWorker({
"--inspect", // start Miniflare listening for a debugger to attach
miniflareCLIPath,
optionsArg,
"--log=VERBOSE", // uncomment this to Miniflare to log "everything"!
// "--log=VERBOSE", // uncomment this to Miniflare to log "everything"!
]);

local.current.on("close", (code) => {
Expand Down

0 comments on commit 3fe320a

Please sign in to comment.