Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion __tests__/unit/jsx/utils/is-number.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ describe('is-number utils', () => {

it('should return false for BigInt', () => {
expect(isNumber(BigInt(42))).toBe(false);
expect(isNumber(42n)).toBe(false);
});

it('should handle edge cases with Number constructor', () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/infographic",
"version": "0.2.11",
"version": "0.2.12",
"description": "An Infographic Generation and Rendering Framework, bring words to life!",
"keywords": [
"antv",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.2.11';
export const VERSION = '0.2.12';
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"rootDir": "./src",
"skipLibCheck": true,
"strict": true,
"target": "ES2020",
"target": "es6",
"types": ["node"],
"resolveJsonModule": true,
"paths": {
Expand Down