Skip to content

Commit a3f27b8

Browse files
authored
build: upgrade ecmascript version (#5507)
* build: upgrade ecmascript version * ci: adjust conditions of check
1 parent 5ccd66e commit a3f27b8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/linter.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- "master"
7-
- "v7.0.0"
87
paths:
98
- "lib/**"
109
- "test/**"

.github/workflows/tester.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@ on:
44
push:
55
branches:
66
- "master"
7-
- "v7.0.0"
87
paths:
98
- "lib/**"
109
- "test/**"
1110
- "package.json"
11+
- "tsconfig.json"
1212
- ".github/workflows/tester.yml"
1313
pull_request:
1414
paths:
1515
- "lib/**"
1616
- "test/**"
1717
- "package.json"
18+
- "tsconfig.json"
1819
- ".github/workflows/tester.yml"
1920

2021
permissions:

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "es6",
4+
"target": "es2020",
55
"sourceMap": true,
66
"outDir": "dist",
77
"declaration": true,
@@ -17,4 +17,4 @@
1717
"exclude": [
1818
"node_modules"
1919
]
20-
}
20+
}

0 commit comments

Comments
 (0)