Compare commits

...

7 Commits
dev ... v8.0.5

Author SHA1 Message Date
Félix MARQUET
8a88d14dcd Merge pull request #14 from BreizhHardware/hotfix/coverage
fix: update coverage command in Makefile and add .nyc_output to .gitignore
2025-11-18 11:15:45 +01:00
Félix MARQUET
eb1a8f08ab fix: update coverage command in Makefile and add .nyc_output to .gitignore 2025-11-18 10:12:13 +00:00
Félix MARQUET
648d88ab7c Merge pull request #13 from BreizhHardware/dev
Dev
2025-11-18 10:59:55 +01:00
Félix MARQUET
8982831816 Merge pull request #12 from BreizhHardware/dependabot/npm_and_yarn/npm_and_yarn-4265e88a4c
Bump js-yaml from 3.14.1 to 3.14.2 in the npm_and_yarn group across 1 directory
2025-11-18 10:58:20 +01:00
dependabot[bot]
b451ab0f97 Bump js-yaml in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: [js-yaml](https://github.com/nodeca/js-yaml).


Updates `js-yaml` from 3.14.1 to 3.14.2
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-18 09:44:01 +00:00
Félix MARQUET
d1d980136f Merge pull request #9 from BreizhHardware/dev
Dev
2025-11-13 16:32:47 +01:00
Félix MARQUET
1c7935b377 Merge pull request #6 from BreizhHardware/dev
Dev
2025-11-13 16:10:17 +01:00
3 changed files with 5 additions and 9 deletions

1
.gitignore vendored
View File

@@ -3,3 +3,4 @@ node_modules
coverage
/.vscode
.env
.nyc_output

View File

@@ -6,14 +6,7 @@ lint:
npx eslint src
npm run dtslint-next
coverage:
node_modules/istanbul/lib/cli.js cover \
-i 'src/*' \
--include-all-sources \
--dir coverage \
node_modules/jasme/run.js
npx nyc --include src --reporter=lcov --reporter=text node_modules/jasme/run.js
coveralls: coverage
ifndef COVERALLS_REPO_TOKEN
$(error COVERALLS_REPO_TOKEN is undefined)
endif
node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
npx nyc report --reporter=text-lcov | npx coveralls

2
package-lock.json generated
View File

@@ -526,6 +526,7 @@
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
"integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
"dev": true,
"license": "MIT",
"dependencies": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -2988,6 +2989,7 @@
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
"dev": true,
"license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},