Skip to content

Commit b1e96ff

Browse files
authored
fix(): Change dependency module maximum versions (#20)
7Zip4Powershell released a 2.0.0 and import-module webkitdev started failing as it installed the 2.0.0 dependency but claimed that it wasn't in range of the min/max dependency versions.
1 parent 98c36cb commit b1e96ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WebKitDev/WebKitDev.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252

5353
# Modules that must be imported into the global environment prior to importing this module
5454
RequiredModules = @(
55-
@{ModuleName = '7Zip4Powershell'; ModuleVersion = '1.13.0'; MaximumVersion = '2.0'; },
56-
@{ModuleName = 'VSSetup'; ModuleVersion = '2.2.16'; MaximumVersion = '3.0'; }
55+
@{ModuleName = '7Zip4Powershell'; ModuleVersion = '1.13.0'; MaximumVersion = '1.999.999'; },
56+
@{ModuleName = 'VSSetup'; ModuleVersion = '2.2.16'; MaximumVersion = '2.999.999'; }
5757
)
5858
# Assemblies that must be loaded prior to importing this module
5959
# RequiredAssemblies = @()

0 commit comments

Comments
 (0)