Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
ignore some files from coverage, refactor codes
Browse files Browse the repository at this point in the history
  • Loading branch information
aelbore committed Apr 16, 2020
1 parent 108b4fb commit b89cf80
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 2 additions & 0 deletions src/build/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

export * from './build'
export * from './build-output'
export * from './generate'
Expand Down
2 changes: 1 addition & 1 deletion src/cli/common.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { KeyValue } from '../utils'
import { KeyValue } from '../utils/utils'

export const DEFAULT_OUT_DIR = 'dist'

Expand Down
1 change: 1 addition & 0 deletions src/config/config.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/* istanbul ignore file */
export * from './base-config'
export * from './ts-rollup-config'
2 changes: 2 additions & 0 deletions src/fs/fs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

import * as fs from 'fs'
import * as util from 'util'
import * as childProcess from 'child_process'
Expand Down
2 changes: 2 additions & 0 deletions src/utils/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

export * from './common'
export * from './copy-package'
export * from './copy-readme'
Expand Down

0 comments on commit b89cf80

Please sign in to comment.