Skip to content

Commit

Permalink
feat(node): minimum node 12.10.0, recommend 14.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 4, 2020
1 parent fa67d97 commit 55331be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/stencil
@@ -1,8 +1,8 @@
#!/usr/bin/env node
'use strict';

var minimumVersion = '10.13';
var recommendedVersion = '12.17';
var minimumVersion = '12.10';
var recommendedVersion = '14.5';
var currentVersion = process.versions.node;

function isNodeLT(v) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -120,7 +120,7 @@
"ws": "7.3.1"
},
"engines": {
"node": ">=10.13.0",
"node": ">=12.10.0",
"npm": ">=6.0.0"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -18,7 +18,7 @@
"outDir": "build",
"pretty": true,
"resolveJsonModule": true,
"target": "es2017",
"target": "es2018",
"baseUrl": ".",
"paths": {
"@app-data": ["src/app-data/index.ts"],
Expand Down

0 comments on commit 55331be

Please sign in to comment.