Skip to content

Commit 866ea9f

Browse files
committed
chore: set engine prop to >= node v14
1 parent 4c0858c commit 866ea9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/standardize-pjson.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ module.exports = (packageRoot = require('./package-path'), inLernaProject) => {
5252

5353
try {
5454
const tsconfig = readFileSync(join(packageRoot, 'tsconfig.json')).toString();
55-
const engineVersion = '>=12.0.0';
55+
const engineVersion = '>=14.0.0';
5656
// Don't control for non dev-config projects, or projects that don't specify an engine already.
5757
if (
5858
tsconfig.match(/"extends"\s*:\s*".*@salesforce\/dev-config/) &&

0 commit comments

Comments
 (0)