diff --git a/package.json b/package.json index e5c395c..58d825e 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "bundle": "ts-node --project ./tools/tsconfig.json ./tools/bundle.ts", "build.packages": "ts-node tools/packages.ts", "reset.packages": "sh ./reset-packages.sh", - "test": "aria-mocha --file ./src/**/*.spec.ts --include-dir ./src --check-coverage", + "test": "aria-mocha --check-coverage", "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" }, "repository": { diff --git a/src/build/index.ts b/src/build/index.ts index 4224b8c..cb2fdf1 100644 --- a/src/build/index.ts +++ b/src/build/index.ts @@ -1,3 +1,5 @@ +/* istanbul ignore file */ + export * from './build' export * from './build-output' export * from './generate' diff --git a/src/cli/common.ts b/src/cli/common.ts index 688543d..950ee44 100644 --- a/src/cli/common.ts +++ b/src/cli/common.ts @@ -1,4 +1,4 @@ -import { KeyValue } from '../utils' +import { KeyValue } from '../utils/utils' export const DEFAULT_OUT_DIR = 'dist' diff --git a/src/config/config.ts b/src/config/config.ts index 6d39b6b..e7bf54a 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -1,2 +1,3 @@ +/* istanbul ignore file */ export * from './base-config' export * from './ts-rollup-config' \ No newline at end of file diff --git a/src/fs/fs.ts b/src/fs/fs.ts index ad15525..e5eef37 100644 --- a/src/fs/fs.ts +++ b/src/fs/fs.ts @@ -1,3 +1,5 @@ +/* istanbul ignore file */ + import * as fs from 'fs' import * as util from 'util' import * as childProcess from 'child_process' diff --git a/src/utils/utils.ts b/src/utils/utils.ts index 588c9cf..e1e13a0 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -1,3 +1,5 @@ +/* istanbul ignore file */ + export * from './common' export * from './copy-package' export * from './copy-readme'