Skip to content

Commit

Permalink
Merge pull request #59 from addyosmani/xmr/drop-node-lt-16
Browse files Browse the repository at this point in the history
Drop Node.js < 16 support
  • Loading branch information
bezoerb committed Sep 19, 2023
2 parents 65645a1 + 9da3b31 commit 7d96703
Show file tree
Hide file tree
Showing 5 changed files with 2,468 additions and 2,877 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12, 14, 16, 18, 20]
node: [16, 18, 20]

steps:
- name: Clone repository
Expand Down
4 changes: 2 additions & 2 deletions bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

'use strict';

const fs = require('fs');
const process = require('process');
const fs = require('node:fs');
const process = require('node:process');
const minimist = require('minimist');
const {description, version} = require('../package.json');
const oust = require('../index.js');
Expand Down
Loading

0 comments on commit 7d96703

Please sign in to comment.