-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade ses to 0.12.3 to avoid console noise (#2552)
* fix: upgrade ses to 0.12.3 to avoid console noise * fix(notifier): update harden() type from make-hardener 0.1.3
- Loading branch information
Showing
8 changed files
with
28 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,6 @@ | |
"access": "public" | ||
}, | ||
"dependencies": { | ||
"ses": "^0.12.2" | ||
"ses": "^0.12.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,20 @@ | |
* Simple boilerplate program providing linkage to launch an application written using modules within the | ||
* as yet not-entirely-ESM-supporting version of NodeJS. | ||
*/ | ||
import lmdb from 'node-lmdb'; | ||
|
||
// LMDB bindings need to be imported before lockdown. | ||
import 'node-lmdb'; | ||
|
||
// FIXME: Without importing vega ahead of lockdown, | ||
// node -r esm bin/runner --init --memdb run demo/encouragementBot | ||
// exits with error code 1, just printing `{}`. | ||
// | ||
// Since this started with [email protected] we suspect vega is somehow | ||
// hitting the override mistake with `constructor`. | ||
import 'vega'; | ||
|
||
// Now do lockdown. | ||
import '../src/install-optional-metering-and-ses'; | ||
import { main } from '../src/main.js'; | ||
|
||
main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters