date-holidays 3.23.1 → 3.23.2
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 +5 -0
- package/data/countries/GB.yaml +3 -3
- package/data/holidays.json +4 -4
- 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 +4 -4
- package/package.json +10 -10
- package/src/data.js +4 -4
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": "2023-11-
|
|
6
|
+
"version": "2023-11-25",
|
|
7
7
|
"license": "CC-BY-SA-3",
|
|
8
8
|
"holidays": {
|
|
9
9
|
"AD": {
|
|
@@ -10181,19 +10181,19 @@ const data = {
|
|
|
10181
10181
|
},
|
|
10182
10182
|
"01-02": {
|
|
10183
10183
|
"name": {
|
|
10184
|
-
"en": "
|
|
10184
|
+
"en": "January 2nd"
|
|
10185
10185
|
}
|
|
10186
10186
|
},
|
|
10187
10187
|
"substitutes 01-02 if saturday then next monday": {
|
|
10188
10188
|
"substitute": true,
|
|
10189
10189
|
"name": {
|
|
10190
|
-
"en": "
|
|
10190
|
+
"en": "January 2nd"
|
|
10191
10191
|
}
|
|
10192
10192
|
},
|
|
10193
10193
|
"substitutes 01-02 if sunday then next monday": {
|
|
10194
10194
|
"substitute": true,
|
|
10195
10195
|
"name": {
|
|
10196
|
-
"en": "
|
|
10196
|
+
"en": "January 2nd"
|
|
10197
10197
|
}
|
|
10198
10198
|
},
|
|
10199
10199
|
"easter 1": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "date-holidays",
|
|
3
|
-
"version": "3.23.
|
|
3
|
+
"version": "3.23.2",
|
|
4
4
|
"description": "worldwide holidays",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"holidays",
|
|
@@ -221,19 +221,19 @@
|
|
|
221
221
|
"prepin": "^1.0.3"
|
|
222
222
|
},
|
|
223
223
|
"devDependencies": {
|
|
224
|
-
"@babel/cli": "^7.23.
|
|
225
|
-
"@babel/core": "^7.23.
|
|
224
|
+
"@babel/cli": "^7.23.4",
|
|
225
|
+
"@babel/core": "^7.23.3",
|
|
226
226
|
"@babel/polyfill": "^7.12.1",
|
|
227
|
-
"@babel/preset-env": "^7.23.
|
|
228
|
-
"@commitlint/cli": "^18.
|
|
229
|
-
"@commitlint/config-conventional": "^18.
|
|
227
|
+
"@babel/preset-env": "^7.23.3",
|
|
228
|
+
"@commitlint/cli": "^18.4.3",
|
|
229
|
+
"@commitlint/config-conventional": "^18.4.3",
|
|
230
230
|
"@mocha/contributors": "git+https://github.com/commenthol/contributors.git#semver:1.1.0-0",
|
|
231
231
|
"babel-loader": "^9.1.3",
|
|
232
232
|
"dtslint": "^4.2.1",
|
|
233
|
-
"eslint": "^8.
|
|
233
|
+
"eslint": "^8.54.0",
|
|
234
234
|
"eslint-config-standard": "^17.1.0",
|
|
235
235
|
"eslint-plugin-import": "^2.29.0",
|
|
236
|
-
"eslint-plugin-n": "^16.
|
|
236
|
+
"eslint-plugin-n": "^16.3.1",
|
|
237
237
|
"eslint-plugin-promise": "^6.1.1",
|
|
238
238
|
"eslint-plugin-yml": "^0.15.0",
|
|
239
239
|
"hashtree": "^0.7.0",
|
|
@@ -243,10 +243,10 @@
|
|
|
243
243
|
"npm-run-all": "^4.1.5",
|
|
244
244
|
"rimraf": "^5.0.5",
|
|
245
245
|
"rollup": "^2.79.1",
|
|
246
|
-
"typescript": "^5.
|
|
246
|
+
"typescript": "^5.3.2",
|
|
247
247
|
"watch-run": "^1.2.5",
|
|
248
248
|
"webpack": "^5.89.0",
|
|
249
|
-
"webpack-bundle-analyzer": "^4.
|
|
249
|
+
"webpack-bundle-analyzer": "^4.10.1",
|
|
250
250
|
"webpack-cli": "^5.1.4"
|
|
251
251
|
},
|
|
252
252
|
"engines": {
|
package/src/data.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const data = {
|
|
2
|
-
version: '2023-11-
|
|
2
|
+
version: '2023-11-25',
|
|
3
3
|
license: 'CC-BY-SA-3',
|
|
4
4
|
holidays: {
|
|
5
5
|
AD: {
|
|
@@ -10177,19 +10177,19 @@ export const data = {
|
|
|
10177
10177
|
},
|
|
10178
10178
|
'01-02': {
|
|
10179
10179
|
name: {
|
|
10180
|
-
en: '
|
|
10180
|
+
en: 'January 2nd'
|
|
10181
10181
|
}
|
|
10182
10182
|
},
|
|
10183
10183
|
'substitutes 01-02 if saturday then next monday': {
|
|
10184
10184
|
substitute: true,
|
|
10185
10185
|
name: {
|
|
10186
|
-
en: '
|
|
10186
|
+
en: 'January 2nd'
|
|
10187
10187
|
}
|
|
10188
10188
|
},
|
|
10189
10189
|
'substitutes 01-02 if sunday then next monday': {
|
|
10190
10190
|
substitute: true,
|
|
10191
10191
|
name: {
|
|
10192
|
-
en: '
|
|
10192
|
+
en: 'January 2nd'
|
|
10193
10193
|
}
|
|
10194
10194
|
},
|
|
10195
10195
|
'easter 1': {
|