@rabbitholegg/questdk
Advanced tools
Comparing version 1.0.1-alpha.8 to 1.0.1-alpha.9
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '1.0.1-alpha.3'; | ||
exports.version = '1.0.1-alpha.8'; | ||
//# sourceMappingURL=version.js.map |
@@ -127,2 +127,10 @@ "use strict"; | ||
} | ||
else if (typeof filters[key] === 'bigint' || | ||
typeof filters[key] === 'number' || | ||
typeof context[key] === 'bigint' || | ||
typeof context[key] === 'number') { | ||
if (BigInt(context[key]) !== BigInt(filters[key])) { | ||
return false; | ||
} | ||
} | ||
else if (context[key] !== filters[key]) { | ||
@@ -129,0 +137,0 @@ return false; |
@@ -1,2 +0,2 @@ | ||
export const version = '1.0.1-alpha.3'; | ||
export const version = '1.0.1-alpha.8'; | ||
//# sourceMappingURL=version.js.map |
@@ -193,2 +193,10 @@ import { decodeAbiParameters, decodeFunctionData, getAbiItem, isAddress, parseAbiParameters, slice, } from 'viem'; | ||
} | ||
else if (typeof filters[key] === 'bigint' || | ||
typeof filters[key] === 'number' || | ||
typeof context[key] === 'bigint' || | ||
typeof context[key] === 'number') { | ||
if (BigInt(context[key]) !== BigInt(filters[key])) { | ||
return false; | ||
} | ||
} | ||
else if (context[key] !== filters[key]) { | ||
@@ -195,0 +203,0 @@ return false; |
@@ -1,2 +0,2 @@ | ||
export declare const version = "1.0.1-alpha.3"; | ||
export declare const version = "1.0.1-alpha.8"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -17,3 +17,3 @@ { | ||
}, | ||
"version": "1.0.1-alpha.8", | ||
"version": "1.0.1-alpha.9", | ||
"files": [ | ||
@@ -77,2 +77,2 @@ "dist", | ||
"keywords": [] | ||
} | ||
} |
@@ -28,1 +28,6 @@ <br/> | ||
### Publishing | ||
In order to publish you need to make sure that the pull request you're submitting has a changeset. If you don't want to publish this isn't needed. | ||
In order to generate a changeset run `pnpm changeset`, select a change type [major,minor,patch], and draft a small summary of the changeset. | ||
After this all you need to do is push and merge the pull request and the Github Action will handle the process of versioning, and publishing. |
@@ -1,1 +0,1 @@ | ||
export const version = '1.0.1-alpha.3' | ||
export const version = '1.0.1-alpha.8' |
@@ -233,3 +233,2 @@ import { | ||
if (!Object.hasOwnProperty.call(filters, key)) continue | ||
if (key in preprocessors) { | ||
@@ -252,2 +251,11 @@ context = preprocessors[key as PreprocessorKey](context, filters) | ||
} | ||
} else if ( | ||
typeof filters[key] === 'bigint' || | ||
typeof filters[key] === 'number' || | ||
typeof context[key] === 'bigint' || | ||
typeof context[key] === 'number' | ||
) { | ||
if (BigInt(context[key]) !== BigInt(filters[key])) { | ||
return false | ||
} | ||
} else if (context[key] !== filters[key]) { | ||
@@ -254,0 +262,0 @@ return false |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
374743
176
9955
32