address comments: rename const file, return prev regexp

This commit is contained in:
weboko 2023-01-20 22:16:38 +01:00
parent 4476564ad5
commit cb69add8c2
No known key found for this signature in database
4 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ module.exports = function (config) {
type: "asset/resource",
},
{
test: /\.(js|ts|tsx)$/,
test: /\.(js|tsx?)$/,
loader: "ts-loader",
exclude: /node_modules|\.d\.ts$/,
options: { configFile: "tsconfig.karma.json" },

View File

@ -1,5 +1,5 @@
import { RLNDecoder, RLNEncoder } from "./codec.js";
import { GOERLI_CONTRACT, RLN_ABI } from "./const.js";
import { GOERLI_CONTRACT, RLN_ABI } from "./constants.js";
import { Proof, RLNInstance } from "./rln.js";
import { MembershipKey } from "./rln.js";
import { RLNContract } from "./rln_contract.js";

View File

@ -1,6 +1,6 @@
import { ethers } from "ethers";
import { RLN_ABI } from "./const.js";
import { RLN_ABI } from "./constants.js";
import { RLNInstance } from "./rln.js";
type Member = {