Skip to content

Commit 299cfb7

Browse files
authored
chore: change build target to es6 (#175)
1 parent a6b5820 commit 299cfb7

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

__tests__/unit/jsx/utils/is-number.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ describe('is-number utils', () => {
8484

8585
it('should return false for BigInt', () => {
8686
expect(isNumber(BigInt(42))).toBe(false);
87-
expect(isNumber(42n)).toBe(false);
8887
});
8988

9089
it('should handle edge cases with Number constructor', () => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antv/infographic",
3-
"version": "0.2.11",
3+
"version": "0.2.12",
44
"description": "An Infographic Generation and Rendering Framework, bring words to life!",
55
"keywords": [
66
"antv",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.2.11';
1+
export const VERSION = '0.2.12';

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"rootDir": "./src",
1414
"skipLibCheck": true,
1515
"strict": true,
16-
"target": "ES2020",
16+
"target": "es6",
1717
"types": ["node"],
1818
"resolveJsonModule": true,
1919
"paths": {

0 commit comments

Comments
 (0)