Skip to content

Commit dec2b4b

Browse files
committed
fix(core): hook helper
1 parent 1c6c38d commit dec2b4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/cli-hooks/before-checkForChanges.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function ($staticConfig, hookArgs) {
1717
if (projectData.projectType === "Angular") {
1818
const webpackMinVer = getMinWebpackVersion(projectData);
1919

20-
if (webpackMinVer && !satisfiesRequriredVersion(webpackMinVer, 1, 3)) {
20+
if (webpackMinVer && !satisfiesRequiredVersion(webpackMinVer, 1, 3)) {
2121
throw new Error(`Building @nativescript/core for Angular requires ${webpackPackageName} with version at least 1.3.0. Please upgrade: npm i ${webpackPackageName} --save-dev.`);
2222
}
2323
}

0 commit comments

Comments
 (0)