We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0097bf7 commit d1b0726Copy full SHA for d1b0726
lib/front-end-builds-notifier.js
@@ -1,7 +1,16 @@
1
const CoreObject = require('core-object');
2
const fs = require('fs');
3
+
4
+// crypto is globally available in Node.js 18, so at some stage we should consider
5
+// accessing directly rather than the require syntax below.
6
+// eslint-disable-next-line no-redeclare
7
const crypto = require('crypto');
8
9
const { execSync } = require('child_process');
10
11
+// fetch is built into Node.js 18, so at some stage we should consider
12
+// removing this dependency.
13
14
const fetch = require('node-fetch');
15
16
module.exports = CoreObject.extend({
0 commit comments