es-regional-holidays 0.1.2 → 0.2.0
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.
- package/README.es.md +156 -0
- package/README.md +44 -25
- package/dist/index.d.mts +43 -25
- package/dist/index.d.ts +43 -25
- package/dist/index.js +5983 -164
- package/dist/index.mjs +5979 -163
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-regional-holidays",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A JavaScript/TypeScript library to get public holidays in Spain by region.",
|
|
5
5
|
"author": "jmelop",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,9 +46,11 @@
|
|
|
46
46
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
47
47
|
"test": "vitest run",
|
|
48
48
|
"test:watch": "vitest",
|
|
49
|
-
"prepublishOnly": "npm run build && npm test"
|
|
49
|
+
"prepublishOnly": "npm run build && npm test",
|
|
50
|
+
"test:coverage": "vitest run --coverage"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
53
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
52
54
|
"tsup": "^8.5.1",
|
|
53
55
|
"typescript": "^5.9.3",
|
|
54
56
|
"vitest": "^2.0.5"
|