Skip to content

Commit 8ef7933

Browse files
committed
Revert unintentional changes
1 parent c99ebb0 commit 8ef7933

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/common/rollup.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export default (commandLineArgs) => {
3838
ReadableStream: ['web-streams-polyfill/ponyfill', 'ReadableStream'],
3939
// Used by can-ndjson-stream
4040
TextDecoder: ['text-encoding', 'TextDecoder']
41-
})
42-
//terser({ sourceMap })
41+
}),
42+
terser({ sourceMap })
4343
],
4444
// This makes life easier
4545
external: [

packages/node/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To resolve this, either:
5050
#### Package better-sqlite3 not found errors
5151

5252
This package does not import `better-sqlite3` statically (with unconditional `require()` or static `import` statements).
53-
Instead, to allow users to us custom `better-sqlite3` forks, a dynamic `require()` / `import` expression is used.
53+
Instead, to allow users to use `node:sqlite` instead of that package, a dynamic `require()` / `import` expression is used.
5454
This may prevent bundlers from detecting that `better-sqlite3` is used by this package.
5555

5656
To fix this, ensure you have a dependency on `better-sqlite3` (and, if you're using TypeScript, a dev-dependency on

0 commit comments

Comments
 (0)