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 cfbd54b commit 8abbacfCopy full SHA for 8abbacf
.github/workflows/smoke-tests.yml
@@ -20,5 +20,6 @@ jobs:
20
- uses: actions/setup-node@v4
21
with:
22
node-version: ${{ matrix.node }}
23
+ cache: npm
24
- run: npm ci
25
- run: npm run test-smoke
packages/cli-repl/src/run.ts
@@ -323,7 +323,7 @@ async function ask(prompt: string): Promise<string> {
323
*/
324
function suppressExperimentalWarnings() {
325
const nodeMajorVersion = process.versions.node.split('.').map(Number)[0];
326
- if (nodeMajorVersion >= 23) {
+ if (nodeMajorVersion >= 24) {
327
const originalEmit = process.emitWarning;
328
process.emitWarning = (warning, ...args: any[]): void => {
329
if (args[0] === 'ExperimentalWarning') {
0 commit comments