@wpmoo/odoo 0.8.41 → 0.8.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +3 -1
package/README.md CHANGED
@@ -2,12 +2,13 @@
2
2
 
3
3
  ![WPMoo Odoo lifecycle tooling across development, staging, and production](docs/assets/wpmoo-banner.png)
4
4
 
5
- [![CI](https://img.shields.io/github/actions/workflow/status/wpmoo-org/wpmoo-odoo/ci.yml?branch=main&label=CI)](https://github.com/wpmoo-org/wpmoo-odoo/actions/workflows/ci.yml)
6
- [![GitHub Source](https://img.shields.io/badge/source-GitHub-181717?logo=github)](https://github.com/wpmoo-org/wpmoo-odoo)
7
- [![npm](https://img.shields.io/npm/v/@wpmoo/odoo?label=npm&logo=npm)](https://www.npmjs.com/package/@wpmoo/odoo)
8
- [![Socket](https://socket.dev/api/badge/npm/package/@wpmoo/odoo)](https://socket.dev/npm/package/@wpmoo/odoo)
9
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
10
- [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-cangir-FFDD00?logo=buymeacoffee&logoColor=000000)](https://www.buymeacoffee.com/cangir)
5
+
6
+ [![CI](https://img.shields.io/github/actions/workflow/status/wpmoo-org/wpmoo-odoo/ci.yml?branch=main&label=CI&style=flat-square)](https://github.com/wpmoo-org/wpmoo-odoo/actions/workflows/ci.yml)
7
+ [![GitHub](https://img.shields.io/badge/GitHub-181717?logo=github&style=flat-square)](https://github.com/wpmoo-org/wpmoo-odoo)
8
+ [![npm](https://img.shields.io/npm/v/@wpmoo/odoo?label=npm&logo=npm&style=flat-square&color=blue)](https://www.npmjs.com/package/@wpmoo/odoo)
9
+ [![Coverage Status](https://img.shields.io/coverallsCoverage/github/wpmoo-org/wpmoo-odoo?branch=main&label=coverage&logo=coveralls&style=flat-square&color=blue)](https://coveralls.io/github/wpmoo-org/wpmoo-odoo?branch=main)
10
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](LICENSE)
11
+ [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20me%20a%20coffee-FFDD00?logo=buymeacoffee&logoColor=000000&style=flat-square)](https://www.buymeacoffee.com/cangir)
11
12
 
12
13
  WPMoo Odoo lifecycle tooling for development, staging, and production workflows.
13
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wpmoo/odoo",
3
- "version": "0.8.41",
3
+ "version": "0.8.43",
4
4
  "description": "WPMoo Odoo lifecycle tooling for development, staging, and production workflows.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -40,6 +40,7 @@
40
40
  "release:check": "bash scripts/release-check.sh",
41
41
  "smoke:published": "bash scripts/smoke-published.sh",
42
42
  "test": "vitest run",
43
+ "test:coverage": "vitest run --coverage",
43
44
  "typecheck": "tsc -p tsconfig.json --noEmit"
44
45
  },
45
46
  "dependencies": {
@@ -48,6 +49,7 @@
48
49
  },
49
50
  "devDependencies": {
50
51
  "@types/node": "^24.0.0",
52
+ "@vitest/coverage-v8": "^3.2.4",
51
53
  "typescript": "^5.8.0",
52
54
  "vitest": "^3.0.0"
53
55
  },