Skip to content

Commit

Permalink
Merge e7810cc into 446fab7
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Sep 30, 2023
2 parents 446fab7 + e7810cc commit 0792f9b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 23 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
files: .tap/report/lcov.info

automerge:
needs: test
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ sandbox.js
package-lock.json
public
coverage
.tap
32 changes: 9 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,12 @@
},
"devDependencies": {
"auto-changelog": "^2.0.0",
"c8": "^8.0.0",
"dependency-cruiser": "^14.0.0",
"gh-release": "^7.0.0",
"npm-run-all2": "^6.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.0.1",
"tap": "^18.4.0",
"browser-sync": "^2.26.7"
},
"homepage": "https://github.com/bcomnes/siteup-cli",
Expand All @@ -74,7 +73,7 @@
"prepublishOnly": "git push --follow-tags && gh-release -y",
"test": "run-s test:*",
"test:standard": "standard --verbose | snazzy",
"test:tap": "c8 tap --no-coverage --color",
"test:tap": "tap",
"test:deptree": "depcruise --validate .dependency-cruiser.json bin.js",
"build-examples": "run-p example:*",
"clean": "rm -rf public && mkdir -p public",
Expand Down Expand Up @@ -111,26 +110,13 @@
"lib/**",
"index.js"
],
"c8": {
"reporter": [
"lcov",
"text"
],
"all": true,
"exclude": [
"examples/*",
"test-cases/*",
"coverage/**",
"packages/*/test{,s}/**",
"**/*.d.ts",
"test{,s}/**",
"test{,-*}.{js,cjs,mjs,ts,tsx,jsx}",
"**/*{.,-}test.{js,cjs,mjs,ts,tsx,jsx}",
"**/__tests__/**",
"**/{ava,babel,nyc}.config.{js,cjs,mjs}",
"**/jest.config.{js,cjs,mjs,ts}",
"**/{karma,rollup,webpack}.config.js",
"**/.{eslint,mocha}rc.{js,cjs}"
"tap": {
"serial": [],
"typecheck": false,
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
]
}
}

0 comments on commit 0792f9b

Please sign in to comment.