-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a186fb
commit c47f159
Showing
10 changed files
with
286 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: release-please | ||
|
||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
with: | ||
release-type: node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export {default} from '@cfware/nyc'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,47 @@ | ||
{ | ||
"name": "@cfware/tap-selenium-manager", | ||
"version": "2.0.0", | ||
"description": "Selenium Manager for tap", | ||
"main": "index.js", | ||
"type": "module", | ||
"scripts": { | ||
"pretest": "cfware-lint .", | ||
"test": "npm run -s tests-only", | ||
"tests-only": "cross-env NODE_OPTIONS='--experimental-loader @istanbuljs/esm-loader-hook' nyc -s node test.js|tap-yaml-summary", | ||
"posttest": "nyc report --check-coverage" | ||
}, | ||
"engines": { | ||
"node": ">=16.12.0" | ||
}, | ||
"author": "Corey Farrell", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cfware/tap-selenium-manager.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/cfware/tap-selenium-manager/issues" | ||
}, | ||
"homepage": "https://github.com/cfware/tap-selenium-manager#readme", | ||
"dependencies": { | ||
"istanbul-lib-coverage": "^3.2.0", | ||
"pngjs": "^6.0.0", | ||
"selenium-webdriver": "^4.4.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.18.10", | ||
"@cfware/lint": "^3.0.0", | ||
"@cfware/nyc": "^0.7.1", | ||
"@istanbuljs/esm-loader-hook": "^0.2.0", | ||
"@fastify/static": "^6.5.0", | ||
"babel-plugin-istanbul": "^6.1.1", | ||
"cross-env": "^7.0.3", | ||
"fastify": "^4.4.0", | ||
"fastify-babel": "^3.0.0", | ||
"is-ci": "^3.0.1", | ||
"libtap": "^1.4.0", | ||
"nyc": "^15.1.0", | ||
"tap-yaml-summary": "^0.2.0" | ||
} | ||
"name": "@cfware/tap-selenium-manager", | ||
"version": "2.0.0", | ||
"description": "Selenium Manager for tap", | ||
"main": "index.js", | ||
"exports": "./index.js", | ||
"type": "module", | ||
"scripts": { | ||
"pretest": "cfware-lint .", | ||
"test": "npm run -s tests-only", | ||
"tests-only": "cross-env NODE_OPTIONS='--experimental-loader @istanbuljs/esm-loader-hook' nyc -s node test.js|tap-yaml-summary", | ||
"posttest": "nyc report --check-coverage" | ||
}, | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"author": "Corey Farrell", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cfware/tap-selenium-manager.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/cfware/tap-selenium-manager/issues" | ||
}, | ||
"homepage": "https://github.com/cfware/tap-selenium-manager#readme", | ||
"dependencies": { | ||
"istanbul-lib-coverage": "^3", | ||
"pngjs": "^7", | ||
"selenium-webdriver": "^4" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7", | ||
"@cfware/lint": "^4", | ||
"@cfware/nyc": "^1", | ||
"@istanbuljs/esm-loader-hook": "^0.2", | ||
"@fastify/static": "^6", | ||
"babel-plugin-istanbul": "^6", | ||
"cross-env": "^7", | ||
"fastify": "^4", | ||
"fastify-babel": "^4", | ||
"is-ci": "^3", | ||
"libtap": "^1", | ||
"nyc": "^15", | ||
"tap-yaml-summary": "^0.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.