Add missing module prefix to fix the CI build (#707)

This commit is contained in:
Filip Sodić 2022-08-26 18:09:32 +02:00 committed by GitHub
parent 8cc63a85a5
commit 9af898f570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,13 +13,13 @@ data ProjectRootDir
-- | Range of node versions that node packages generated by this generator work correctly with. -- | Range of node versions that node packages generated by this generator work correctly with.
nodeVersionRange :: SV.Range nodeVersionRange :: SV.Range
nodeVersionRange = SV.Range [backwardsCompatibleWith latestLTSVersion] nodeVersionRange = SV.Range [SV.backwardsCompatibleWith latestLTSVersion]
where where
latestLTSVersion = SV.Version 16 0 0 latestLTSVersion = SV.Version 16 0 0
-- | Range of npm versions that Wasp and generated projects work correctly with. -- | Range of npm versions that Wasp and generated projects work correctly with.
npmVersionRange :: SV.Range npmVersionRange :: SV.Range
npmVersionRange = SV.Range [backwardsCompatibleWith latestLTSVersion] npmVersionRange = SV.Range [SV.backwardsCompatibleWith latestLTSVersion]
where where
latestLTSVersion = SV.Version 8 0 0 -- Goes with node 16 (but also higher versions too) latestLTSVersion = SV.Version 8 0 0 -- Goes with node 16 (but also higher versions too)