rename file extensions

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
xermicus
2024-05-08 11:02:05 +02:00
parent b55669f5c5
commit e958da5cd1
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ pub static EXTENSION_LLVM_SOURCE: &str = "ll";
pub static EXTENSION_LLVM_BINARY: &str = "bc";
/// The PolkaVM assembly file extension.
pub static EXTENSION_POLKAVM_ASSEMBLY: &str = "zasm";
pub static EXTENSION_POLKAVM_ASSEMBLY: &str = "pvmasm";
/// The PolkaVM bytecode file extension.
pub static EXTENSION_POLKAVM_BINARY: &str = "zbin";
pub static EXTENSION_POLKAVM_BINARY: &str = "pvm";
@@ -1,8 +1,8 @@
import * as path from 'path';
const outputDir = 'artifacts';
const binExtension = ':C.zbin';
const asmExtension = ':C.zasm';
const binExtension = ':C.pvm';
const asmExtension = ':C.pvmasm';
const contractSolFilename = 'contract.sol';
const contractYulFilename = 'contract.yul';
const pathToOutputDir = path.join(__dirname, '..', outputDir);