date-holidays 3.23.12 → 3.23.13
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/CHANGELOG.md +7 -0
- package/data/countries/AU.yaml +4 -0
- package/data/countries/CL.yaml +5 -1
- package/data/holidays.json +14 -2
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/umd.min.js +1 -1
- package/dist/umd.min.js.map +1 -1
- package/lib/data.cjs +14 -2
- package/package.json +38 -38
- package/scripts/addtree.cjs +0 -0
- package/scripts/attributions.cjs +0 -0
- package/scripts/tree.cjs +0 -0
- package/src/data.js +14 -2
package/lib/data.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
const data = {
|
|
6
|
-
"version": "2024-
|
|
6
|
+
"version": "2024-11-26",
|
|
7
7
|
"license": "CC-BY-SA-3",
|
|
8
8
|
"holidays": {
|
|
9
9
|
"AD": {
|
|
@@ -1525,6 +1525,12 @@ const data = {
|
|
|
1525
1525
|
{
|
|
1526
1526
|
"from": "2022-09-09"
|
|
1527
1527
|
}
|
|
1528
|
+
],
|
|
1529
|
+
"disable": [
|
|
1530
|
+
"2024-09-30"
|
|
1531
|
+
],
|
|
1532
|
+
"enable": [
|
|
1533
|
+
"2024-09-23"
|
|
1528
1534
|
]
|
|
1529
1535
|
},
|
|
1530
1536
|
"1st monday in October": false
|
|
@@ -6584,7 +6590,13 @@ const data = {
|
|
|
6584
6590
|
"es": "Día de las Glorias Navales"
|
|
6585
6591
|
}
|
|
6586
6592
|
},
|
|
6587
|
-
"06-21 since
|
|
6593
|
+
"06-21 since 2021 prior to 2022": {
|
|
6594
|
+
"name": {
|
|
6595
|
+
"en": "Indigenous People's Day",
|
|
6596
|
+
"es": "Día de los Pueblos Indígenas"
|
|
6597
|
+
}
|
|
6598
|
+
},
|
|
6599
|
+
"june solstice in America/Santiago since 2022": {
|
|
6588
6600
|
"name": {
|
|
6589
6601
|
"en": "Indigenous People's Day",
|
|
6590
6602
|
"es": "Día de los Pueblos Indígenas"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "date-holidays",
|
|
3
|
-
"version": "3.23.
|
|
3
|
+
"version": "3.23.13",
|
|
4
4
|
"description": "worldwide holidays",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"holidays",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"Brian Keifer <brian@valinor.net>",
|
|
41
41
|
"Christian Schinnerl <Schinnerl.Christian@gmail.com>",
|
|
42
42
|
"Cristian Andrade <cr.andrade.m@gmail.com>",
|
|
43
|
+
"Cristóbal Berríos <crisberrios@uc.cl>",
|
|
43
44
|
"Daichan <daichi.yasuda@asbloom.me>",
|
|
44
45
|
"damon02 <damon@teqplay.nl>",
|
|
45
46
|
"David Álvarez Navarro <david16an@gmail.com>",
|
|
@@ -82,6 +83,7 @@
|
|
|
82
83
|
"Kevin Ley <3976145+kevinley@users.noreply.github.com>",
|
|
83
84
|
"Kevin Ley <ley.kevin@icloud.com>",
|
|
84
85
|
"Kevin Samoei <samoeikev@gmail.com>",
|
|
86
|
+
"Kiernan McColl <kiernan@kzn.io>",
|
|
85
87
|
"Konstantinos Koukourakis <konstantinoskouk90@gmail.com>",
|
|
86
88
|
"Leonidas Villeneuve <leonidas@leonidasv.com>",
|
|
87
89
|
"Long Nguyen <olragon@users.noreply.github.com>",
|
|
@@ -158,28 +160,6 @@
|
|
|
158
160
|
"doc": "docs",
|
|
159
161
|
"test": "test"
|
|
160
162
|
},
|
|
161
|
-
"scripts": {
|
|
162
|
-
"all": "npm-run-all clean build lint test doc:tree doc:attrib webpack",
|
|
163
|
-
"build": "npm-run-all yaml build:only",
|
|
164
|
-
"build:only": "rollup -c",
|
|
165
|
-
"changelog": "contributors && node scripts/gitlog.cjs",
|
|
166
|
-
"ci": "TEST_XXL=1 npm-run-all yaml build test",
|
|
167
|
-
"clean": "rimraf lib dist src/data.js",
|
|
168
|
-
"clean:all": "npm-run-all clean clean:modules",
|
|
169
|
-
"clean:modules": "rimraf node_modules",
|
|
170
|
-
"doc:attrib": "node scripts/attributions.cjs",
|
|
171
|
-
"doc:tree": "node scripts/addtree.cjs",
|
|
172
|
-
"lint": "eslint --fix --ext .js,.cjs,.yaml .",
|
|
173
|
-
"prepublishOnly": "npm run all",
|
|
174
|
-
"test": "npm-run-all test:ci",
|
|
175
|
-
"test:ci": "mocha",
|
|
176
|
-
"test:ts": "dtslint types",
|
|
177
|
-
"watch": "watch-run -p data/countries/*.yaml npm run yaml",
|
|
178
|
-
"webpack": "webpack",
|
|
179
|
-
"webpack:analyze": "webpack",
|
|
180
|
-
"yaml": "node scripts/holidays2json.cjs",
|
|
181
|
-
"prepare": "husky install"
|
|
182
|
-
},
|
|
183
163
|
"commitlint": {
|
|
184
164
|
"extends": [
|
|
185
165
|
"@commitlint/config-conventional"
|
|
@@ -229,31 +209,31 @@
|
|
|
229
209
|
"prepin": "^1.0.3"
|
|
230
210
|
},
|
|
231
211
|
"devDependencies": {
|
|
232
|
-
"@babel/cli": "^7.
|
|
233
|
-
"@babel/core": "^7.
|
|
212
|
+
"@babel/cli": "^7.25.9",
|
|
213
|
+
"@babel/core": "^7.26.0",
|
|
234
214
|
"@babel/polyfill": "^7.12.1",
|
|
235
|
-
"@babel/preset-env": "^7.
|
|
215
|
+
"@babel/preset-env": "^7.26.0",
|
|
236
216
|
"@commitlint/cli": "^18.6.1",
|
|
237
217
|
"@commitlint/config-conventional": "^18.6.3",
|
|
238
218
|
"@mocha/contributors": "git+https://github.com/commenthol/contributors.git#semver:1.1.0-0",
|
|
239
|
-
"babel-loader": "^9.1
|
|
219
|
+
"babel-loader": "^9.2.1",
|
|
240
220
|
"dtslint": "^4.2.1",
|
|
241
|
-
"eslint": "^8.57.
|
|
221
|
+
"eslint": "^8.57.1",
|
|
242
222
|
"eslint-config-standard": "^17.1.0",
|
|
243
|
-
"eslint-plugin-import": "^2.
|
|
223
|
+
"eslint-plugin-import": "^2.31.0",
|
|
244
224
|
"eslint-plugin-n": "^16.6.2",
|
|
245
|
-
"eslint-plugin-promise": "^6.
|
|
225
|
+
"eslint-plugin-promise": "^6.6.0",
|
|
246
226
|
"eslint-plugin-yml": "^0.15.0",
|
|
247
227
|
"hashtree": "^0.7.0",
|
|
248
|
-
"husky": "^9.
|
|
249
|
-
"markedpp": "^1.
|
|
250
|
-
"mocha": "^10.
|
|
228
|
+
"husky": "^9.1.7",
|
|
229
|
+
"markedpp": "^1.4.0",
|
|
230
|
+
"mocha": "^10.8.2",
|
|
251
231
|
"npm-run-all": "^4.1.5",
|
|
252
|
-
"rimraf": "^
|
|
253
|
-
"rollup": "^2.79.
|
|
254
|
-
"typescript": "^5.
|
|
232
|
+
"rimraf": "^6.0.1",
|
|
233
|
+
"rollup": "^2.79.2",
|
|
234
|
+
"typescript": "^5.7.2",
|
|
255
235
|
"watch-run": "^1.2.5",
|
|
256
|
-
"webpack": "^5.
|
|
236
|
+
"webpack": "^5.96.1",
|
|
257
237
|
"webpack-bundle-analyzer": "^4.10.2",
|
|
258
238
|
"webpack-cli": "^5.1.4"
|
|
259
239
|
},
|
|
@@ -263,5 +243,25 @@
|
|
|
263
243
|
"c4uIgnore": {
|
|
264
244
|
"eslint-plugin-yml": "^0.15.0 // newer versions do too much checking",
|
|
265
245
|
"rollup": "^2.79.1 // v3 changed exports; needs refactoring first."
|
|
246
|
+
},
|
|
247
|
+
"scripts": {
|
|
248
|
+
"all": "npm-run-all clean build lint test doc:tree doc:attrib webpack",
|
|
249
|
+
"build": "npm-run-all yaml build:only",
|
|
250
|
+
"build:only": "rollup -c",
|
|
251
|
+
"changelog": "contributors && node scripts/gitlog.cjs",
|
|
252
|
+
"ci": "TEST_XXL=1 npm-run-all yaml build test",
|
|
253
|
+
"clean": "rimraf lib dist src/data.js",
|
|
254
|
+
"clean:all": "npm-run-all clean clean:modules",
|
|
255
|
+
"clean:modules": "rimraf node_modules",
|
|
256
|
+
"doc:attrib": "node scripts/attributions.cjs",
|
|
257
|
+
"doc:tree": "node scripts/addtree.cjs",
|
|
258
|
+
"lint": "eslint --fix --ext .js,.cjs,.yaml .",
|
|
259
|
+
"test": "npm-run-all test:ci",
|
|
260
|
+
"test:ci": "mocha",
|
|
261
|
+
"test:ts": "dtslint types",
|
|
262
|
+
"watch": "watch-run -p data/countries/*.yaml npm run yaml",
|
|
263
|
+
"webpack": "webpack",
|
|
264
|
+
"webpack:analyze": "webpack",
|
|
265
|
+
"yaml": "node scripts/holidays2json.cjs"
|
|
266
266
|
}
|
|
267
|
-
}
|
|
267
|
+
}
|
package/scripts/addtree.cjs
CHANGED
|
File without changes
|
package/scripts/attributions.cjs
CHANGED
|
File without changes
|
package/scripts/tree.cjs
CHANGED
|
File without changes
|
package/src/data.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const data = {
|
|
2
|
-
version: '2024-
|
|
2
|
+
version: '2024-11-26',
|
|
3
3
|
license: 'CC-BY-SA-3',
|
|
4
4
|
holidays: {
|
|
5
5
|
AD: {
|
|
@@ -1521,6 +1521,12 @@ export const data = {
|
|
|
1521
1521
|
{
|
|
1522
1522
|
from: '2022-09-09'
|
|
1523
1523
|
}
|
|
1524
|
+
],
|
|
1525
|
+
disable: [
|
|
1526
|
+
'2024-09-30'
|
|
1527
|
+
],
|
|
1528
|
+
enable: [
|
|
1529
|
+
'2024-09-23'
|
|
1524
1530
|
]
|
|
1525
1531
|
},
|
|
1526
1532
|
'1st monday in October': false
|
|
@@ -6580,7 +6586,13 @@ export const data = {
|
|
|
6580
6586
|
es: 'Día de las Glorias Navales'
|
|
6581
6587
|
}
|
|
6582
6588
|
},
|
|
6583
|
-
'06-21 since
|
|
6589
|
+
'06-21 since 2021 prior to 2022': {
|
|
6590
|
+
name: {
|
|
6591
|
+
en: "Indigenous People's Day",
|
|
6592
|
+
es: 'Día de los Pueblos Indígenas'
|
|
6593
|
+
}
|
|
6594
|
+
},
|
|
6595
|
+
'june solstice in America/Santiago since 2022': {
|
|
6584
6596
|
name: {
|
|
6585
6597
|
en: "Indigenous People's Day",
|
|
6586
6598
|
es: 'Día de los Pueblos Indígenas'
|