Add Robot_JoyIt driver

This commit is contained in:
2026-01-17 16:50:07 +01:00
parent e9e50acf5f
commit 0cfb4d5a95
15848 changed files with 570836 additions and 268976 deletions

View File

@@ -1,3 +1,10 @@
## [1.0.3](https://github.com/SimenB/collect-v8-coverage/compare/v1.0.2...v1.0.3) (2025-10-15)
### Bug Fixes
* enable and disable debugger for more accurate coverage ([#235](https://github.com/SimenB/collect-v8-coverage/issues/235)) ([44fdef5](https://github.com/SimenB/collect-v8-coverage/commit/44fdef5d9110664da487f973f27aef134e0b035f))
## [1.0.2](https://github.com/SimenB/collect-v8-coverage/compare/v1.0.1...v1.0.2) (2023-07-05)

View File

@@ -13,6 +13,8 @@ class CoverageInstrumenter {
async startInstrumenting() {
this.session.connect();
await this.postSession('Debugger.enable');
await this.postSession('Profiler.enable');
await this.postSession('Profiler.startPreciseCoverage', {
@@ -30,6 +32,8 @@ class CoverageInstrumenter {
await this.postSession('Profiler.disable');
await this.postSession('Debugger.disable');
// When using networked filesystems on Windows, v8 sometimes returns URLs
// of the form file:////<host>/path. These URLs are not well understood
// by NodeJS (see https://github.com/nodejs/node/issues/48530).

View File

@@ -1,6 +1,6 @@
{
"name": "collect-v8-coverage",
"version": "1.0.2",
"version": "1.0.3",
"main": "index.js",
"types": "index.d.ts",
"repository": "SimenB/collect-v8-coverage",
@@ -11,14 +11,14 @@
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.2.1",
"semantic-release": "^21.0.0"
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"semantic-release": "^25.0.0"
},
"prettier": {
"singleQuote": true,
@@ -33,9 +33,6 @@
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
@@ -46,7 +43,7 @@
]
},
"scripts": {
"prepare": "husky install"
"prepare": "husky"
},
"packageManager": "yarn@3.6.0"
"packageManager": "yarn@4.10.3"
}