Skip to content

Commit

Permalink
Require node 18 minimum as engines clause
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm1957 committed Oct 4, 2024
1 parent 10b5d0a commit 0ad5f43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Branch (`master/main/dev`) is optional.
-->

## Changelog
### **WORK IN PROGRESS**
* (mcm1957) Require node 18 minimum as engines clause.

### 3.1.1 (2024-10-04)
* (mcm1957) "[E166] 'common.mode: extension' is unknown" has been fixed [#308]
* (mcm1957) "[E904] file iob_npm.done found in repository, but not found in .gitignore" removed as covered by [E503]. [#309]
Expand Down
2 changes: 1 addition & 1 deletion lib/M000_PackageJson.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const compareVersions = require('compare-versions');
const common = require('./common.js');

const recommendedNodeVersion = '18'; // This is the minimum node version that should be required
const requiredNodeVersion = '16'; // This is the minimum node version that must be required
const requiredNodeVersion = '18'; // This is the minimum node version that must be required

/* TODO: configuration should be moved to context */

Expand Down

0 comments on commit 0ad5f43

Please sign in to comment.