We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b53c65b commit 6fd18e8Copy full SHA for 6fd18e8
2 files changed
CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
### Added
11
12
- Added [siliconeidolon](https://github.com/siliconeidolon) to acknowledgements
13
+- Comments on `verifyNodeVersion()`
14
15
### Changed
16
src/util.ts
@@ -121,6 +121,9 @@ export const validateApplicationName = (applicationName: any) => {
121
}
122
};
123
124
+/**
125
+ * Verifies that the application can run. Needs >= Node v10.0.0
126
+ */
127
export const verifyNodeVersion = (): void => {
128
if (!semver.satisfies(process.version, ">=10.0.0")) {
129
console.error(
0 commit comments