lemmafit 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cli/download-dafny2js.js
CHANGED
|
@@ -18,6 +18,7 @@ const PLATFORM_RIDS = {
|
|
|
18
18
|
'linux-x64': 'linux-x64',
|
|
19
19
|
'linux-arm64': 'linux-arm64',
|
|
20
20
|
'win32-x64': 'win-x64',
|
|
21
|
+
'win32-arm64': 'win-x64',
|
|
21
22
|
};
|
|
22
23
|
|
|
23
24
|
function getPlatformKey() {
|
|
@@ -25,7 +26,7 @@ function getPlatformKey() {
|
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
function guessRid(platformKey) {
|
|
28
|
-
return PLATFORM_RIDS[platformKey] ||
|
|
29
|
+
return PLATFORM_RIDS[platformKey] || platformKey;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
function printBuildInstructions(rid) {
|
package/lib/download-dafny.js
CHANGED
|
@@ -18,6 +18,7 @@ const PLATFORM_ASSETS = {
|
|
|
18
18
|
'linux-x64': `dafny-${DAFNY_VERSION}-x64-ubuntu-22.04.zip`,
|
|
19
19
|
'linux-arm64': `dafny-${DAFNY_VERSION}-arm64-ubuntu-22.04.zip`,
|
|
20
20
|
'win32-x64': `dafny-${DAFNY_VERSION}-x64-windows-2019.zip`,
|
|
21
|
+
'win32-arm64': `dafny-${DAFNY_VERSION}-x64-windows-2019.zip`,
|
|
21
22
|
};
|
|
22
23
|
|
|
23
24
|
function getPlatformKey() {
|