File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 83
83
"install" : " (shx test -f ./script/build.js || run-s build.js) && cross-env npm_config_build_from_source=true aminya-node-gyp-build" ,
84
84
"clean" : " shx rm -rf ./build ./lib/ ./prebuilds ./script/*.js ./script/*.js.map ./script/*.d.ts ./script/*.tsbuildinfo" ,
85
85
"clean.temp" : " shx rm -rf ./tmp && shx mkdir -p ./tmp && shx touch ./tmp/.gitkeep" ,
86
- "build.library.compat" : " shx rm -rf ./lib/ts3.7 && downlevel-dts ./lib ./lib/ts3.7 --to=3.7" ,
87
- "build.library" : " tsc -p ./src/tsconfig.json && run-s build.library.compat" ,
86
+ "build.library" : " tsc -p ./src/tsconfig.json" ,
88
87
"build.script" : " tsc -p ./script/tsconfig.json && tsc -p ./script/tsconfig.esm.json" ,
89
88
"build.js" : " run-p build.script build.library" ,
90
89
"build.doc" : " typedoc --options ./typedoc.json && minify-all -s docs-raw -d docs --jsCompressor terser" ,
Original file line number Diff line number Diff line change @@ -23,9 +23,6 @@ import {assert} from "chai"
23
23
type TestDef = { version : string ; minTarget : string ; requiredLibs ?: string [ ] }
24
24
25
25
const tsVersions : TestDef [ ] = [
26
- // the oldest supported version
27
- { version : "3.7.x" , minTarget : "es3" } ,
28
-
29
26
// 4.x
30
27
{ version : "4.x" , minTarget : "es3" } ,
31
28
]
You can’t perform that action at this time.
0 commit comments