File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 23
23
"ci:coverage" : " nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov" ,
24
24
"ci:lint" : " pnpm build && pnpm lint" ,
25
25
"ci:lint:commits" : " commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}" ,
26
- "ci:test" : " pnpm test -- --verbose" ,
26
+ "ci:test" : " pnpm test -- --verbose && pnpm test:ts " ,
27
27
"prebuild" : " del-cli dist" ,
28
28
"prepare" : " if [ ! -d 'dist' ]; then pnpm build; fi" ,
29
29
"prerelease" : " pnpm build" ,
30
30
"pretest" : " pnpm build" ,
31
31
"release" : " pnpm plugin:release --workspace-root -- --pkg $npm_package_name" ,
32
- "test" : " ava"
32
+ "test" : " ava" ,
33
+ "test:ts" : " tsc types/index.d.ts test/types.ts --noEmit"
33
34
},
34
35
"files" : [
35
36
" dist" ,
Original file line number Diff line number Diff line change 1
1
import { FilterPattern } from '@rollup/pluginutils' ;
2
2
import { Plugin } from 'rollup' ;
3
- import { Options as SucraseOptions } from 'sucrase/dist/Options ' ;
3
+ import { Options as SucraseOptions } from 'sucrase' ;
4
4
5
5
interface RollupSucraseOptions
6
6
extends Pick <
You can’t perform that action at this time.
0 commit comments