mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-25 01:52:00 +03:00
Add missing module prefix to fix the CI build (#707)
This commit is contained in:
parent
8cc63a85a5
commit
9af898f570
@ -13,13 +13,13 @@ data ProjectRootDir
|
||||
|
||||
-- | Range of node versions that node packages generated by this generator work correctly with.
|
||||
nodeVersionRange :: SV.Range
|
||||
nodeVersionRange = SV.Range [backwardsCompatibleWith latestLTSVersion]
|
||||
nodeVersionRange = SV.Range [SV.backwardsCompatibleWith latestLTSVersion]
|
||||
where
|
||||
latestLTSVersion = SV.Version 16 0 0
|
||||
|
||||
-- | Range of npm versions that Wasp and generated projects work correctly with.
|
||||
npmVersionRange :: SV.Range
|
||||
npmVersionRange = SV.Range [backwardsCompatibleWith latestLTSVersion]
|
||||
npmVersionRange = SV.Range [SV.backwardsCompatibleWith latestLTSVersion]
|
||||
where
|
||||
latestLTSVersion = SV.Version 8 0 0 -- Goes with node 16 (but also higher versions too)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user