@tachybase/module-web 1.3.23 → 1.3.25

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 (32) hide show
  1. package/dist/externalVersion.js +4 -4
  2. package/dist/node_modules/cronstrue/bin/cli.js +25 -8
  3. package/dist/node_modules/cronstrue/dist/cronParser.d.ts +2 -2
  4. package/dist/node_modules/cronstrue/dist/cronstrue-i18n.js +278 -66
  5. package/dist/node_modules/cronstrue/dist/cronstrue-i18n.min.js +1 -1
  6. package/dist/node_modules/cronstrue/dist/cronstrue.js +1 -1
  7. package/dist/node_modules/cronstrue/dist/cronstrue.min.js +1 -1
  8. package/dist/node_modules/cronstrue/dist/expressionDescriptor.d.ts +1 -1
  9. package/dist/node_modules/cronstrue/dist/i18n/allLocales.d.ts +1 -0
  10. package/dist/node_modules/cronstrue/dist/i18n/locale.d.ts +2 -0
  11. package/dist/node_modules/cronstrue/dist/i18n/locales/da.d.ts +1 -1
  12. package/dist/node_modules/cronstrue/dist/i18n/locales/en.d.ts +1 -0
  13. package/dist/node_modules/cronstrue/dist/i18n/locales/fr.d.ts +5 -1
  14. package/dist/node_modules/cronstrue/dist/i18n/locales/hr.d.ts +55 -0
  15. package/dist/node_modules/cronstrue/locales/da.js +2 -2
  16. package/dist/node_modules/cronstrue/locales/da.min.js +1 -1
  17. package/dist/node_modules/cronstrue/locales/en.js +4 -1
  18. package/dist/node_modules/cronstrue/locales/en.min.js +1 -1
  19. package/dist/node_modules/cronstrue/locales/fr.js +12 -4
  20. package/dist/node_modules/cronstrue/locales/fr.min.js +1 -1
  21. package/dist/node_modules/cronstrue/locales/hr.js +288 -0
  22. package/dist/node_modules/cronstrue/locales/hr.min.js +1 -0
  23. package/dist/node_modules/cronstrue/locales/nb.js +1 -1
  24. package/dist/node_modules/cronstrue/locales/nb.min.js +1 -1
  25. package/dist/node_modules/cronstrue/locales/ru.js +1 -1
  26. package/dist/node_modules/cronstrue/locales/ru.min.js +1 -1
  27. package/dist/node_modules/cronstrue/locales/zh_CN.js +4 -4
  28. package/dist/node_modules/cronstrue/locales/zh_CN.min.js +1 -1
  29. package/dist/node_modules/cronstrue/locales/zh_TW.js +4 -4
  30. package/dist/node_modules/cronstrue/locales/zh_TW.min.js +1 -1
  31. package/dist/node_modules/cronstrue/package.json +1 -1
  32. package/package.json +7 -7
@@ -0,0 +1,288 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory(require("cronstrue"));
4
+ else if(typeof define === 'function' && define.amd)
5
+ define("locales/hr", ["cronstrue"], factory);
6
+ else if(typeof exports === 'object')
7
+ exports["locales/hr"] = factory(require("cronstrue"));
8
+ else
9
+ root["locales/hr"] = factory(root["cronstrue"]);
10
+ })(globalThis, (__WEBPACK_EXTERNAL_MODULE__93__) => {
11
+ return /******/ (() => { // webpackBootstrap
12
+ /******/ "use strict";
13
+ /******/ var __webpack_modules__ = ({
14
+
15
+ /***/ 93:
16
+ /***/ ((module) => {
17
+
18
+ module.exports = __WEBPACK_EXTERNAL_MODULE__93__;
19
+
20
+ /***/ })
21
+
22
+ /******/ });
23
+ /************************************************************************/
24
+ /******/ // The module cache
25
+ /******/ var __webpack_module_cache__ = {};
26
+ /******/
27
+ /******/ // The require function
28
+ /******/ function __webpack_require__(moduleId) {
29
+ /******/ // Check if module is in cache
30
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
31
+ /******/ if (cachedModule !== undefined) {
32
+ /******/ return cachedModule.exports;
33
+ /******/ }
34
+ /******/ // Create a new module (and put it into the cache)
35
+ /******/ var module = __webpack_module_cache__[moduleId] = {
36
+ /******/ // no module.id needed
37
+ /******/ // no module.loaded needed
38
+ /******/ exports: {}
39
+ /******/ };
40
+ /******/
41
+ /******/ // Execute the module function
42
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
43
+ /******/
44
+ /******/ // Return the exports of the module
45
+ /******/ return module.exports;
46
+ /******/ }
47
+ /******/
48
+ /************************************************************************/
49
+ /******/ /* webpack/runtime/compat get default export */
50
+ /******/ (() => {
51
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
52
+ /******/ __webpack_require__.n = (module) => {
53
+ /******/ var getter = module && module.__esModule ?
54
+ /******/ () => (module['default']) :
55
+ /******/ () => (module);
56
+ /******/ __webpack_require__.d(getter, { a: getter });
57
+ /******/ return getter;
58
+ /******/ };
59
+ /******/ })();
60
+ /******/
61
+ /******/ /* webpack/runtime/define property getters */
62
+ /******/ (() => {
63
+ /******/ // define getter functions for harmony exports
64
+ /******/ __webpack_require__.d = (exports, definition) => {
65
+ /******/ for(var key in definition) {
66
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
67
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
68
+ /******/ }
69
+ /******/ }
70
+ /******/ };
71
+ /******/ })();
72
+ /******/
73
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
74
+ /******/ (() => {
75
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
76
+ /******/ })();
77
+ /******/
78
+ /******/ /* webpack/runtime/make namespace object */
79
+ /******/ (() => {
80
+ /******/ // define __esModule on exports
81
+ /******/ __webpack_require__.r = (exports) => {
82
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
83
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
84
+ /******/ }
85
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
86
+ /******/ };
87
+ /******/ })();
88
+ /******/
89
+ /************************************************************************/
90
+ var __webpack_exports__ = {};
91
+ __webpack_require__.r(__webpack_exports__);
92
+ /* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(93);
93
+ /* harmony import */ var cronstrue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(cronstrue__WEBPACK_IMPORTED_MODULE_0__);
94
+ var exports = __webpack_exports__;
95
+ "use strict";
96
+ Object.defineProperty(exports, "__esModule", { value: true });
97
+ exports.hr = void 0;
98
+ var hr = (function () {
99
+ function hr() {
100
+ }
101
+ hr.prototype.use24HourTimeFormatByDefault = function () {
102
+ return true;
103
+ };
104
+ hr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
105
+ return "Došlo je do pogreške pri generiranju izraza. Provjerite sintaksu cron izraza.";
106
+ };
107
+ hr.prototype.at = function () {
108
+ return "U";
109
+ };
110
+ hr.prototype.atSpace = function () {
111
+ return "U ";
112
+ };
113
+ hr.prototype.atX0 = function () {
114
+ return "u %s";
115
+ };
116
+ hr.prototype.atX0MinutesPastTheHour = function () {
117
+ return "u %s minuta nakon punog sata";
118
+ };
119
+ hr.prototype.atX0SecondsPastTheMinute = function () {
120
+ return "u %s sekundi nakon pune minute";
121
+ };
122
+ hr.prototype.betweenX0AndX1 = function () {
123
+ return "između %s i %s";
124
+ };
125
+ hr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
126
+ return ", između %s. i %s. dana u mjesecu";
127
+ };
128
+ hr.prototype.commaEveryDay = function () {
129
+ return ", svaki dan";
130
+ };
131
+ hr.prototype.commaEveryX0Days = function () {
132
+ return ", svakih %s dana";
133
+ };
134
+ hr.prototype.commaEveryX0DaysOfTheWeek = function () {
135
+ return ", svakih %s dana u tjednu";
136
+ };
137
+ hr.prototype.commaEveryX0Months = function () {
138
+ return ", svakih %s mjeseci";
139
+ };
140
+ hr.prototype.commaEveryX0Years = function () {
141
+ return ", svakih %s godina";
142
+ };
143
+ hr.prototype.commaOnDayX0OfTheMonth = function () {
144
+ return ", %s. dan u mjesecu";
145
+ };
146
+ hr.prototype.commaOnlyInX0 = function () {
147
+ return ", samo u %s";
148
+ };
149
+ hr.prototype.commaOnlyOnX0 = function () {
150
+ return ", samo %s";
151
+ };
152
+ hr.prototype.commaAndOnX0 = function () {
153
+ return ", i %s";
154
+ };
155
+ hr.prototype.commaOnThe = function () {
156
+ return ", ";
157
+ };
158
+ hr.prototype.commaOnTheLastDayOfTheMonth = function () {
159
+ return ", zadnji dan u mjesecu";
160
+ };
161
+ hr.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
162
+ return ", zadnji radni dan u mjesecu";
163
+ };
164
+ hr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
165
+ return ", %s dana prije kraja mjeseca";
166
+ };
167
+ hr.prototype.commaOnTheLastX0OfTheMonth = function () {
168
+ return ", zadnji %s u mjesecu";
169
+ };
170
+ hr.prototype.commaOnTheX0OfTheMonth = function () {
171
+ return ", %s u mjesecu";
172
+ };
173
+ hr.prototype.commaX0ThroughX1 = function () {
174
+ return ", od %s do %s";
175
+ };
176
+ hr.prototype.commaAndX0ThroughX1 = function () {
177
+ return ", i od %s do %s";
178
+ };
179
+ hr.prototype.everyHour = function () {
180
+ return "svaki sat";
181
+ };
182
+ hr.prototype.everyMinute = function () {
183
+ return "svaku minutu";
184
+ };
185
+ hr.prototype.everyMinuteBetweenX0AndX1 = function () {
186
+ return "Svaku minutu između %s i %s";
187
+ };
188
+ hr.prototype.everySecond = function () {
189
+ return "svaku sekundu";
190
+ };
191
+ hr.prototype.everyX0Hours = function () {
192
+ return "svakih %s sati";
193
+ };
194
+ hr.prototype.everyX0Minutes = function () {
195
+ return "svakih %s minuta";
196
+ };
197
+ hr.prototype.everyX0Seconds = function () {
198
+ return "svakih %s sekundi";
199
+ };
200
+ hr.prototype.fifth = function () {
201
+ return "peti";
202
+ };
203
+ hr.prototype.first = function () {
204
+ return "prvi";
205
+ };
206
+ hr.prototype.firstWeekday = function () {
207
+ return "prvi radni dan";
208
+ };
209
+ hr.prototype.fourth = function () {
210
+ return "četvrti";
211
+ };
212
+ hr.prototype.minutesX0ThroughX1PastTheHour = function () {
213
+ return "minute od %s do %s nakon punog sata";
214
+ };
215
+ hr.prototype.second = function () {
216
+ return "drugi";
217
+ };
218
+ hr.prototype.secondsX0ThroughX1PastTheMinute = function () {
219
+ return "sekunde od %s do %s nakon pune minute";
220
+ };
221
+ hr.prototype.spaceAnd = function () {
222
+ return " i";
223
+ };
224
+ hr.prototype.spaceX0OfTheMonth = function () {
225
+ return " %s u mjesecu";
226
+ };
227
+ hr.prototype.lastDay = function () {
228
+ return "zadnji dan";
229
+ };
230
+ hr.prototype.third = function () {
231
+ return "treći";
232
+ };
233
+ hr.prototype.weekdayNearestDayX0 = function () {
234
+ return "radni dan najbliži %s. danu";
235
+ };
236
+ hr.prototype.commaMonthX0ThroughMonthX1 = function () {
237
+ return null;
238
+ };
239
+ hr.prototype.commaYearX0ThroughYearX1 = function () {
240
+ return null;
241
+ };
242
+ hr.prototype.atX0MinutesPastTheHourGt20 = function () {
243
+ return null;
244
+ };
245
+ hr.prototype.atX0SecondsPastTheMinuteGt20 = function () {
246
+ return null;
247
+ };
248
+ hr.prototype.commaStartingX0 = function () {
249
+ return ", počevši od %s";
250
+ };
251
+ hr.prototype.daysOfTheWeek = function () {
252
+ return [
253
+ "Nedjelja",
254
+ "Ponedjeljak",
255
+ "Utorak",
256
+ "Srijeda",
257
+ "Četvrtak",
258
+ "Petak",
259
+ "Subota",
260
+ ];
261
+ };
262
+ hr.prototype.monthsOfTheYear = function () {
263
+ return [
264
+ "siječanj",
265
+ "veljača",
266
+ "ožujak",
267
+ "travanj",
268
+ "svibanj",
269
+ "lipanj",
270
+ "srpanj",
271
+ "kolovoz",
272
+ "rujan",
273
+ "listopad",
274
+ "studeni",
275
+ "prosinac",
276
+ ];
277
+ };
278
+ return hr;
279
+ }());
280
+ exports.hr = hr;
281
+
282
+
283
+ (cronstrue__WEBPACK_IMPORTED_MODULE_0___default().locales)["hr"] = new hr();
284
+
285
+ /******/ return __webpack_exports__;
286
+ /******/ })()
287
+ ;
288
+ });
@@ -0,0 +1 @@
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/hr.min",["cronstrue"],e):"object"==typeof exports?exports["locales/hr.min"]=e(require("cronstrue")):t["locales/hr.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},n={};function o(t){var r=n[t];if(void 0!==r)return r.exports;var u=n[t]={exports:{}};return e[t](u,u.exports,o),u.exports}o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var n in e)o.o(e,n)&&!o.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};o.r(r);var u=o(93),a=o.n(u),i=r;Object.defineProperty(i,"__esModule",{value:!0}),i.hr=void 0;var p=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Došlo je do pogreške pri generiranju izraza. Provjerite sintaksu cron izraza."},t.prototype.at=function(){return"U"},t.prototype.atSpace=function(){return"U "},t.prototype.atX0=function(){return"u %s"},t.prototype.atX0MinutesPastTheHour=function(){return"u %s minuta nakon punog sata"},t.prototype.atX0SecondsPastTheMinute=function(){return"u %s sekundi nakon pune minute"},t.prototype.betweenX0AndX1=function(){return"između %s i %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", između %s. i %s. dana u mjesecu"},t.prototype.commaEveryDay=function(){return", svaki dan"},t.prototype.commaEveryX0Days=function(){return", svakih %s dana"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", svakih %s dana u tjednu"},t.prototype.commaEveryX0Months=function(){return", svakih %s mjeseci"},t.prototype.commaEveryX0Years=function(){return", svakih %s godina"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. dan u mjesecu"},t.prototype.commaOnlyInX0=function(){return", samo u %s"},t.prototype.commaOnlyOnX0=function(){return", samo %s"},t.prototype.commaAndOnX0=function(){return", i %s"},t.prototype.commaOnThe=function(){return", "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", zadnji dan u mjesecu"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", zadnji radni dan u mjesecu"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dana prije kraja mjeseca"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", zadnji %s u mjesecu"},t.prototype.commaOnTheX0OfTheMonth=function(){return", %s u mjesecu"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.commaAndX0ThroughX1=function(){return", i od %s do %s"},t.prototype.everyHour=function(){return"svaki sat"},t.prototype.everyMinute=function(){return"svaku minutu"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Svaku minutu između %s i %s"},t.prototype.everySecond=function(){return"svaku sekundu"},t.prototype.everyX0Hours=function(){return"svakih %s sati"},t.prototype.everyX0Minutes=function(){return"svakih %s minuta"},t.prototype.everyX0Seconds=function(){return"svakih %s sekundi"},t.prototype.fifth=function(){return"peti"},t.prototype.first=function(){return"prvi"},t.prototype.firstWeekday=function(){return"prvi radni dan"},t.prototype.fourth=function(){return"četvrti"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minute od %s do %s nakon punog sata"},t.prototype.second=function(){return"drugi"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunde od %s do %s nakon pune minute"},t.prototype.spaceAnd=function(){return" i"},t.prototype.spaceX0OfTheMonth=function(){return" %s u mjesecu"},t.prototype.lastDay=function(){return"zadnji dan"},t.prototype.third=function(){return"treći"},t.prototype.weekdayNearestDayX0=function(){return"radni dan najbliži %s. danu"},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.commaStartingX0=function(){return", počevši od %s"},t.prototype.daysOfTheWeek=function(){return["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"]},t.prototype.monthsOfTheYear=function(){return["siječanj","veljača","ožujak","travanj","svibanj","lipanj","srpanj","kolovoz","rujan","listopad","studeni","prosinac"]},t}();return i.hr=p,a().locales.hr=new p,r})()));
@@ -225,7 +225,7 @@ var nb = (function () {
225
225
  return "minuttene fra %s til og med %s etter timen";
226
226
  };
227
227
  nb.prototype.second = function () {
228
- return "sekund";
228
+ return "andre";
229
229
  };
230
230
  nb.prototype.secondsX0ThroughX1PastTheMinute = function () {
231
231
  return "sekundene fra %s til og med %s etter minuttet";
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/nb.min",["cronstrue"],t):"object"==typeof exports?exports["locales/nb.min"]=t(require("cronstrue")):e["locales/nb.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93:t=>{t.exports=e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,r),u.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};r.r(o);var u=r(93),p=r.n(u),a=o;Object.defineProperty(a,"__esModule",{value:!0}),a.nb=void 0;var i=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks."},e.prototype.at=function(){return"Kl."},e.prototype.atSpace=function(){return"Kl."},e.prototype.atX0=function(){return"på %s"},e.prototype.atX0MinutesPastTheHour=function(){return"på %s minutter etter timen"},e.prototype.atX0SecondsPastTheMinute=function(){return"på %s sekunder etter minuttet"},e.prototype.betweenX0AndX1=function(){return"mellom %s og %s"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellom dag %s og %s av måneden"},e.prototype.commaEveryDay=function(){return", hver dag"},e.prototype.commaEveryX0Days=function(){return", hver %s dag"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s ukedag"},e.prototype.commaEveryX0Months=function(){return", hver %s måned"},e.prototype.commaEveryX0Years=function(){return", hvert %s år"},e.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s av måneden"},e.prototype.commaOnlyInX0=function(){return", bare i %s"},e.prototype.commaOnlyOnX0=function(){return", på %s"},e.prototype.commaAndOnX0=function(){return", og på %s"},e.prototype.commaOnThe=function(){return", på "},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den siste dagen i måneden"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", den siste ukedagen i måneden"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dager før den siste dagen i måneden"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den siste %s av måneden"},e.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s av måneden"},e.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},e.prototype.commaAndX0ThroughX1=function(){return", og %s til og med %s"},e.prototype.everyHour=function(){return"hver time"},e.prototype.everyMinute=function(){return"hvert minutt"},e.prototype.everyMinuteBetweenX0AndX1=function(){return"Hvert minutt mellom %s og %s"},e.prototype.everySecond=function(){return"hvert sekund"},e.prototype.everyX0Hours=function(){return"hver %s time"},e.prototype.everyX0Minutes=function(){return"hvert %s minutt"},e.prototype.everyX0Seconds=function(){return"hvert %s sekund"},e.prototype.fifth=function(){return"femte"},e.prototype.first=function(){return"første"},e.prototype.firstWeekday=function(){return"første ukedag"},e.prototype.fourth=function(){return"fjerde"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuttene fra %s til og med %s etter timen"},e.prototype.second=function(){return"sekund"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundene fra %s til og med %s etter minuttet"},e.prototype.spaceAnd=function(){return" og"},e.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},e.prototype.lastDay=function(){return"den siste dagen"},e.prototype.third=function(){return"tredje"},e.prototype.weekdayNearestDayX0=function(){return"ukedag nærmest dag %s"},e.prototype.commaStartingX0=function(){return", starter %s"},e.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},e.prototype.monthsOfTheYear=function(){return["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]},e}();return a.nb=i,p().locales.nb=new i,o})()));
1
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/nb.min",["cronstrue"],t):"object"==typeof exports?exports["locales/nb.min"]=t(require("cronstrue")):e["locales/nb.min"]=t(e.cronstrue)}(globalThis,(e=>(()=>{"use strict";var t={93:t=>{t.exports=e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,r),u.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};r.r(o);var u=r(93),p=r.n(u),a=o;Object.defineProperty(a,"__esModule",{value:!0}),a.nb=void 0;var i=function(){function e(){}return e.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},e.prototype.atX0MinutesPastTheHourGt20=function(){return null},e.prototype.commaMonthX0ThroughMonthX1=function(){return null},e.prototype.commaYearX0ThroughYearX1=function(){return null},e.prototype.use24HourTimeFormatByDefault=function(){return!0},e.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks."},e.prototype.at=function(){return"Kl."},e.prototype.atSpace=function(){return"Kl."},e.prototype.atX0=function(){return"på %s"},e.prototype.atX0MinutesPastTheHour=function(){return"på %s minutter etter timen"},e.prototype.atX0SecondsPastTheMinute=function(){return"på %s sekunder etter minuttet"},e.prototype.betweenX0AndX1=function(){return"mellom %s og %s"},e.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellom dag %s og %s av måneden"},e.prototype.commaEveryDay=function(){return", hver dag"},e.prototype.commaEveryX0Days=function(){return", hver %s dag"},e.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s ukedag"},e.prototype.commaEveryX0Months=function(){return", hver %s måned"},e.prototype.commaEveryX0Years=function(){return", hvert %s år"},e.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s av måneden"},e.prototype.commaOnlyInX0=function(){return", bare i %s"},e.prototype.commaOnlyOnX0=function(){return", på %s"},e.prototype.commaAndOnX0=function(){return", og på %s"},e.prototype.commaOnThe=function(){return", på "},e.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den siste dagen i måneden"},e.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", den siste ukedagen i måneden"},e.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dager før den siste dagen i måneden"},e.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den siste %s av måneden"},e.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s av måneden"},e.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},e.prototype.commaAndX0ThroughX1=function(){return", og %s til og med %s"},e.prototype.everyHour=function(){return"hver time"},e.prototype.everyMinute=function(){return"hvert minutt"},e.prototype.everyMinuteBetweenX0AndX1=function(){return"Hvert minutt mellom %s og %s"},e.prototype.everySecond=function(){return"hvert sekund"},e.prototype.everyX0Hours=function(){return"hver %s time"},e.prototype.everyX0Minutes=function(){return"hvert %s minutt"},e.prototype.everyX0Seconds=function(){return"hvert %s sekund"},e.prototype.fifth=function(){return"femte"},e.prototype.first=function(){return"første"},e.prototype.firstWeekday=function(){return"første ukedag"},e.prototype.fourth=function(){return"fjerde"},e.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuttene fra %s til og med %s etter timen"},e.prototype.second=function(){return"andre"},e.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundene fra %s til og med %s etter minuttet"},e.prototype.spaceAnd=function(){return" og"},e.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},e.prototype.lastDay=function(){return"den siste dagen"},e.prototype.third=function(){return"tredje"},e.prototype.weekdayNearestDayX0=function(){return"ukedag nærmest dag %s"},e.prototype.commaStartingX0=function(){return", starter %s"},e.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},e.prototype.monthsOfTheYear=function(){return["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]},e}();return a.nb=i,p().locales.nb=new i,o})()));
@@ -180,7 +180,7 @@ var ru = (function () {
180
180
  return ", каждый день";
181
181
  };
182
182
  ru.prototype.commaEveryX0DaysOfTheWeek = function (s) {
183
- return getPhraseByNumber(s, ["", ", каждые %s дня недели", ", каждые %s дней недели"]);
183
+ return getPhraseByNumber(s, [", каждый %s день недели", ", каждые %s дня недели", ", каждые %s дней недели"]);
184
184
  };
185
185
  ru.prototype.commaX0ThroughX1 = function (s) {
186
186
  return s && (s[0] == "2" || s[0] == "3") ? ", со %s по %s" : ", с %s по %s";
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/ru.min",["cronstrue"],e):"object"==typeof exports?exports["locales/ru.min"]=e(require("cronstrue")):t["locales/ru.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},o={};function r(t){var n=o[t];if(void 0!==n)return n.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,r),u.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};r.r(n);var u=r(93),p=r.n(u),s=n;Object.defineProperty(s,"__esModule",{value:!0}),s.ru=void 0;var c=function(t,e){var o=Number(t);return void 0!==o?e[o%100>4&&o%100<20?2:[2,0,1,1,1,2][o%10<5?Math.abs(o)%10:5]]:e[2]},i=function(t,e){var o=Number(t);return void 0!==o?e[0===o?0:1===o||2===o||4===o?1:2]:e[1]},a=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"каждую минуту"},t.prototype.everyHour=function(){return"каждый час"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Произошла ошибка во время генерации описания выражения. Проверьте синтаксис крон-выражения."},t.prototype.atSpace=function(){return"В "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Каждую минуту с %s по %s"},t.prototype.at=function(){return"В"},t.prototype.spaceAnd=function(){return" и"},t.prototype.everySecond=function(){return"каждую секунду"},t.prototype.everyX0Seconds=function(t){return c(t,["каждую %s секунду","каждые %s секунды","каждые %s секунд"])},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"секунды с %s по %s"},t.prototype.atX0SecondsPastTheMinute=function(t){return c(t,["в %s секунду","в %s секунды","в %s секунд"])},t.prototype.everyX0Minutes=function(t){return c(t,["каждую %s минуту","каждые %s минуты","каждые %s минут"])},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"минуты с %s по %s"},t.prototype.atX0MinutesPastTheHour=function(t){return c(t,["в %s минуту","в %s минуты","в %s минут"])},t.prototype.everyX0Hours=function(t){return c(t,["каждый %s час","каждые %s часа","каждые %s часов"])},t.prototype.betweenX0AndX1=function(){return"с %s по %s"},t.prototype.atX0=function(){return"в %s"},t.prototype.commaEveryDay=function(){return", каждый день"},t.prototype.commaEveryX0DaysOfTheWeek=function(t){return c(t,["",", каждые %s дня недели",", каждые %s дней недели"])},t.prototype.commaX0ThroughX1=function(t){return!t||"2"!=t[0]&&"3"!=t[0]?", с %s по %s":", со %s по %s"},t.prototype.commaAndX0ThroughX1=function(t){return!t||"2"!=t[0]&&"3"!=t[0]?" и с %s по %s":" и со %s по %s"},t.prototype.first=function(t){return i(t,["первое","первый","первую"])},t.prototype.second=function(t){return i(t,["второе","второй","вторую"])},t.prototype.third=function(t){return i(t,["третье","третий","третью"])},t.prototype.fourth=function(t){return i(t,["четвертое","четвертый","четвертую"])},t.prototype.fifth=function(t){return i(t,["пятое","пятый","пятую"])},t.prototype.commaOnThe=function(t){return"2"===t?", во ":", в "},t.prototype.spaceX0OfTheMonth=function(){return" %s месяца"},t.prototype.lastDay=function(){return"последний день"},t.prototype.commaOnTheLastX0OfTheMonth=function(t){return i(t,[", в последнее %s месяца",", в последний %s месяца",", в последнюю %s месяца"])},t.prototype.commaOnlyOnX0=function(t){return t&&"2"===t[0]?", только во %s":", только в %s"},t.prototype.commaAndOnX0=function(){return", и %s"},t.prototype.commaEveryX0Months=function(t){return c(t,[""," каждые %s месяца"," каждые %s месяцев"])},t.prototype.commaOnlyInMonthX0=function(){return", только %s"},t.prototype.commaOnlyInX0=function(){return", только в %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", в последний день месяца"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", в последний будний день месяца"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(t){return c(t,[", за %s день до конца месяца",", за %s дня до конца месяца",", за %s дней до конца месяца"])},t.prototype.firstWeekday=function(){return"первый будний день"},t.prototype.weekdayNearestDayX0=function(){return"ближайший будний день к %s числу"},t.prototype.commaOnTheX0OfTheMonth=function(){return", в %s месяца"},t.prototype.commaEveryX0Days=function(t){return c(t,[", каждый %s день",", каждые %s дня",", каждые %s дней"])},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(t){return t&&"2"==t.substring(0,t.indexOf("-"))?", со %s по %s число месяца":", с %s по %s число месяца"},t.prototype.commaOnDayX0OfTheMonth=function(t){return t&&"2"==t[0]?", во %s число месяца":", в %s число месяца"},t.prototype.commaEveryX0Years=function(t){return c(t,[", каждый %s год",", каждые %s года",", каждые %s лет"])},t.prototype.commaStartingX0=function(){return", начало %s"},t.prototype.daysOfTheWeek=function(){return["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"]},t.prototype.daysOfTheWeekInCase=function(t){return void 0===t&&(t=2),1==t?["воскресенья","понедельника","вторника","среды","четверга","пятницы","субботы"]:["воскресенье","понедельник","вторник","среду","четверг","пятницу","субботу"]},t.prototype.monthsOfTheYear=function(){return["январь","февраль","март","апрель","май","июнь","июль","август","сентябрь","октябрь","ноябрь","декабрь"]},t.prototype.monthsOfTheYearInCase=function(t){return 1==t?["января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря"]:this.monthsOfTheYear()},t}();return s.ru=a,p().locales.ru=new a,n})()));
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/ru.min",["cronstrue"],e):"object"==typeof exports?exports["locales/ru.min"]=e(require("cronstrue")):t["locales/ru.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},o={};function r(t){var n=o[t];if(void 0!==n)return n.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,r),u.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};r.r(n);var u=r(93),p=r.n(u),s=n;Object.defineProperty(s,"__esModule",{value:!0}),s.ru=void 0;var c=function(t,e){var o=Number(t);return void 0!==o?e[o%100>4&&o%100<20?2:[2,0,1,1,1,2][o%10<5?Math.abs(o)%10:5]]:e[2]},i=function(t,e){var o=Number(t);return void 0!==o?e[0===o?0:1===o||2===o||4===o?1:2]:e[1]},a=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"каждую минуту"},t.prototype.everyHour=function(){return"каждый час"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Произошла ошибка во время генерации описания выражения. Проверьте синтаксис крон-выражения."},t.prototype.atSpace=function(){return"В "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Каждую минуту с %s по %s"},t.prototype.at=function(){return"В"},t.prototype.spaceAnd=function(){return" и"},t.prototype.everySecond=function(){return"каждую секунду"},t.prototype.everyX0Seconds=function(t){return c(t,["каждую %s секунду","каждые %s секунды","каждые %s секунд"])},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"секунды с %s по %s"},t.prototype.atX0SecondsPastTheMinute=function(t){return c(t,["в %s секунду","в %s секунды","в %s секунд"])},t.prototype.everyX0Minutes=function(t){return c(t,["каждую %s минуту","каждые %s минуты","каждые %s минут"])},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"минуты с %s по %s"},t.prototype.atX0MinutesPastTheHour=function(t){return c(t,["в %s минуту","в %s минуты","в %s минут"])},t.prototype.everyX0Hours=function(t){return c(t,["каждый %s час","каждые %s часа","каждые %s часов"])},t.prototype.betweenX0AndX1=function(){return"с %s по %s"},t.prototype.atX0=function(){return"в %s"},t.prototype.commaEveryDay=function(){return", каждый день"},t.prototype.commaEveryX0DaysOfTheWeek=function(t){return c(t,[", каждый %s день недели",", каждые %s дня недели",", каждые %s дней недели"])},t.prototype.commaX0ThroughX1=function(t){return!t||"2"!=t[0]&&"3"!=t[0]?", с %s по %s":", со %s по %s"},t.prototype.commaAndX0ThroughX1=function(t){return!t||"2"!=t[0]&&"3"!=t[0]?" и с %s по %s":" и со %s по %s"},t.prototype.first=function(t){return i(t,["первое","первый","первую"])},t.prototype.second=function(t){return i(t,["второе","второй","вторую"])},t.prototype.third=function(t){return i(t,["третье","третий","третью"])},t.prototype.fourth=function(t){return i(t,["четвертое","четвертый","четвертую"])},t.prototype.fifth=function(t){return i(t,["пятое","пятый","пятую"])},t.prototype.commaOnThe=function(t){return"2"===t?", во ":", в "},t.prototype.spaceX0OfTheMonth=function(){return" %s месяца"},t.prototype.lastDay=function(){return"последний день"},t.prototype.commaOnTheLastX0OfTheMonth=function(t){return i(t,[", в последнее %s месяца",", в последний %s месяца",", в последнюю %s месяца"])},t.prototype.commaOnlyOnX0=function(t){return t&&"2"===t[0]?", только во %s":", только в %s"},t.prototype.commaAndOnX0=function(){return", и %s"},t.prototype.commaEveryX0Months=function(t){return c(t,[""," каждые %s месяца"," каждые %s месяцев"])},t.prototype.commaOnlyInMonthX0=function(){return", только %s"},t.prototype.commaOnlyInX0=function(){return", только в %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", в последний день месяца"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", в последний будний день месяца"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(t){return c(t,[", за %s день до конца месяца",", за %s дня до конца месяца",", за %s дней до конца месяца"])},t.prototype.firstWeekday=function(){return"первый будний день"},t.prototype.weekdayNearestDayX0=function(){return"ближайший будний день к %s числу"},t.prototype.commaOnTheX0OfTheMonth=function(){return", в %s месяца"},t.prototype.commaEveryX0Days=function(t){return c(t,[", каждый %s день",", каждые %s дня",", каждые %s дней"])},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(t){return t&&"2"==t.substring(0,t.indexOf("-"))?", со %s по %s число месяца":", с %s по %s число месяца"},t.prototype.commaOnDayX0OfTheMonth=function(t){return t&&"2"==t[0]?", во %s число месяца":", в %s число месяца"},t.prototype.commaEveryX0Years=function(t){return c(t,[", каждый %s год",", каждые %s года",", каждые %s лет"])},t.prototype.commaStartingX0=function(){return", начало %s"},t.prototype.daysOfTheWeek=function(){return["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"]},t.prototype.daysOfTheWeekInCase=function(t){return void 0===t&&(t=2),1==t?["воскресенья","понедельника","вторника","среды","четверга","пятницы","субботы"]:["воскресенье","понедельник","вторник","среду","четверг","пятницу","субботу"]},t.prototype.monthsOfTheYear=function(){return["январь","февраль","март","апрель","май","июнь","июль","август","сентябрь","октябрь","ноябрь","декабрь"]},t.prototype.monthsOfTheYearInCase=function(t){return 1==t?["января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря"]:this.monthsOfTheYear()},t}();return s.ru=a,p().locales.ru=new a,n})()));
@@ -150,19 +150,19 @@ var zh_CN = (function () {
150
150
  return "每隔 %s 秒";
151
151
  };
152
152
  zh_CN.prototype.secondsX0ThroughX1PastTheMinute = function () {
153
- return "在每分钟的第 %s 到 %s 秒";
153
+ return "在一分钟后的第 %s 到 %s 秒";
154
154
  };
155
155
  zh_CN.prototype.atX0SecondsPastTheMinute = function () {
156
- return "在每分钟的第 %s 秒";
156
+ return "在一分钟后的第 %s 秒";
157
157
  };
158
158
  zh_CN.prototype.everyX0Minutes = function () {
159
159
  return "每隔 %s 分钟";
160
160
  };
161
161
  zh_CN.prototype.minutesX0ThroughX1PastTheHour = function () {
162
- return "在每小时的第 %s 到 %s 分钟";
162
+ return "在整点后的第 %s 到 %s 分钟";
163
163
  };
164
164
  zh_CN.prototype.atX0MinutesPastTheHour = function () {
165
- return "在每小时的第 %s 分钟";
165
+ return "在整点后的第 %s 分钟";
166
166
  };
167
167
  zh_CN.prototype.everyX0Hours = function () {
168
168
  return "每隔 %s 小时";
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/zh_CN.min",["cronstrue"],e):"object"==typeof exports?exports["locales/zh_CN.min"]=e(require("cronstrue")):t["locales/zh_CN.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},o={};function r(t){var n=o[t];if(void 0!==n)return n.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,r),u.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};r.r(n);var u=r(93),p=r.n(u),c=n;Object.defineProperty(c,"__esModule",{value:!0}),c.zh_CN=void 0;var y=function(){function t(){}return t.prototype.setPeriodBeforeTime=function(){return!0},t.prototype.pm=function(){return"下午"},t.prototype.am=function(){return"上午"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", 从%s年至%s年"},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"每分钟"},t.prototype.everyHour=function(){return"每小时"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"生成表达式描述时发生了错误,请检查cron表达式语法。"},t.prototype.atSpace=function(){return"在"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"在 %s 至 %s 之间的每分钟"},t.prototype.at=function(){return"在"},t.prototype.spaceAnd=function(){return" 和"},t.prototype.everySecond=function(){return"每秒"},t.prototype.everyX0Seconds=function(){return"每隔 %s 秒"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"在每分钟的第 %s 到 %s 秒"},t.prototype.atX0SecondsPastTheMinute=function(){return"在每分钟的第 %s 秒"},t.prototype.everyX0Minutes=function(){return"每隔 %s 分钟"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"在每小时的第 %s 到 %s 分钟"},t.prototype.atX0MinutesPastTheHour=function(){return"在每小时的第 %s 分钟"},t.prototype.everyX0Hours=function(){return"每隔 %s 小时"},t.prototype.betweenX0AndX1=function(){return"在 %s 和 %s 之间"},t.prototype.atX0=function(){return"在%s"},t.prototype.commaEveryDay=function(){return", 每天"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 每周的每 %s 天"},t.prototype.commaX0ThroughX1=function(){return", %s至%s"},t.prototype.commaAndX0ThroughX1=function(){return", 和%s至%s"},t.prototype.first=function(){return"第一个"},t.prototype.second=function(){return"第二个"},t.prototype.third=function(){return"第三个"},t.prototype.fourth=function(){return"第四个"},t.prototype.fifth=function(){return"第五个"},t.prototype.commaOnThe=function(){return", 限每月的"},t.prototype.spaceX0OfTheMonth=function(){return"%s"},t.prototype.lastDay=function(){return"本月最后一天"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 限每月的最后一个%s"},t.prototype.commaOnlyOnX0=function(){return", 仅%s"},t.prototype.commaAndOnX0=function(){return", 或者为%s"},t.prototype.commaEveryX0Months=function(){return", 每隔 %s 个月"},t.prototype.commaOnlyInX0=function(){return", 仅限%s"},t.prototype.commaOnlyInMonthX0=function(){return", 仅于%s份"},t.prototype.commaOnlyInYearX0=function(){return", 仅于 %s 年"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 限每月的最后一天"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 限每月的最后一个工作日"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", 限每月最后%s天"},t.prototype.firstWeekday=function(){return"第一个工作日"},t.prototype.weekdayNearestDayX0=function(){return"最接近 %s 号的工作日"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 限每月的%s"},t.prototype.commaEveryX0Days=function(){return", 每隔 %s 天"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 限每月的 %s 至 %s 之间"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 限每月%s"},t.prototype.commaEveryX0Years=function(){return", 每隔 %s 年"},t.prototype.commaStartingX0=function(){return", %s开始"},t.prototype.dayX0=function(){return" %s 号"},t.prototype.daysOfTheWeek=function(){return["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},t.prototype.monthsOfTheYear=function(){return["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},t}();return c.zh_CN=y,p().locales.zh_CN=new y,n})()));
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/zh_CN.min",["cronstrue"],e):"object"==typeof exports?exports["locales/zh_CN.min"]=e(require("cronstrue")):t["locales/zh_CN.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},o={};function r(t){var n=o[t];if(void 0!==n)return n.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,r),u.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var o in e)r.o(e,o)&&!r.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};r.r(n);var u=r(93),p=r.n(u),c=n;Object.defineProperty(c,"__esModule",{value:!0}),c.zh_CN=void 0;var y=function(){function t(){}return t.prototype.setPeriodBeforeTime=function(){return!0},t.prototype.pm=function(){return"下午"},t.prototype.am=function(){return"上午"},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", 从%s年至%s年"},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"每分钟"},t.prototype.everyHour=function(){return"每小时"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"生成表达式描述时发生了错误,请检查cron表达式语法。"},t.prototype.atSpace=function(){return"在"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"在 %s 至 %s 之间的每分钟"},t.prototype.at=function(){return"在"},t.prototype.spaceAnd=function(){return" 和"},t.prototype.everySecond=function(){return"每秒"},t.prototype.everyX0Seconds=function(){return"每隔 %s 秒"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"在一分钟后的第 %s 到 %s 秒"},t.prototype.atX0SecondsPastTheMinute=function(){return"在一分钟后的第 %s 秒"},t.prototype.everyX0Minutes=function(){return"每隔 %s 分钟"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"在整点后的第 %s 到 %s 分钟"},t.prototype.atX0MinutesPastTheHour=function(){return"在整点后的第 %s 分钟"},t.prototype.everyX0Hours=function(){return"每隔 %s 小时"},t.prototype.betweenX0AndX1=function(){return"在 %s 和 %s 之间"},t.prototype.atX0=function(){return"在%s"},t.prototype.commaEveryDay=function(){return", 每天"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 每周的每 %s 天"},t.prototype.commaX0ThroughX1=function(){return", %s至%s"},t.prototype.commaAndX0ThroughX1=function(){return", 和%s至%s"},t.prototype.first=function(){return"第一个"},t.prototype.second=function(){return"第二个"},t.prototype.third=function(){return"第三个"},t.prototype.fourth=function(){return"第四个"},t.prototype.fifth=function(){return"第五个"},t.prototype.commaOnThe=function(){return", 限每月的"},t.prototype.spaceX0OfTheMonth=function(){return"%s"},t.prototype.lastDay=function(){return"本月最后一天"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 限每月的最后一个%s"},t.prototype.commaOnlyOnX0=function(){return", 仅%s"},t.prototype.commaAndOnX0=function(){return", 或者为%s"},t.prototype.commaEveryX0Months=function(){return", 每隔 %s 个月"},t.prototype.commaOnlyInX0=function(){return", 仅限%s"},t.prototype.commaOnlyInMonthX0=function(){return", 仅于%s份"},t.prototype.commaOnlyInYearX0=function(){return", 仅于 %s 年"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 限每月的最后一天"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 限每月的最后一个工作日"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", 限每月最后%s天"},t.prototype.firstWeekday=function(){return"第一个工作日"},t.prototype.weekdayNearestDayX0=function(){return"最接近 %s 号的工作日"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 限每月的%s"},t.prototype.commaEveryX0Days=function(){return", 每隔 %s 天"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 限每月的 %s 至 %s 之间"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 限每月%s"},t.prototype.commaEveryX0Years=function(){return", 每隔 %s 年"},t.prototype.commaStartingX0=function(){return", %s开始"},t.prototype.dayX0=function(){return" %s 号"},t.prototype.daysOfTheWeek=function(){return["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},t.prototype.monthsOfTheYear=function(){return["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},t}();return c.zh_CN=y,p().locales.zh_CN=new y,n})()));
@@ -141,19 +141,19 @@ var zh_TW = (function () {
141
141
  return "每 %s 秒";
142
142
  };
143
143
  zh_TW.prototype.secondsX0ThroughX1PastTheMinute = function () {
144
- return "在每分鐘的 %s 到 %s 秒";
144
+ return "在一分鐘後的 %s 到 %s 秒";
145
145
  };
146
146
  zh_TW.prototype.atX0SecondsPastTheMinute = function () {
147
- return "在每分鐘的 %s 秒";
147
+ return "在一分鐘後的 %s 秒";
148
148
  };
149
149
  zh_TW.prototype.everyX0Minutes = function () {
150
150
  return "每 %s 分鐘";
151
151
  };
152
152
  zh_TW.prototype.minutesX0ThroughX1PastTheHour = function () {
153
- return "在每小時的 %s 到 %s 分鐘";
153
+ return "在整點後的 %s 到 %s 分鐘";
154
154
  };
155
155
  zh_TW.prototype.atX0MinutesPastTheHour = function () {
156
- return "在每小時的 %s 分";
156
+ return "在整點後的 %s 分";
157
157
  };
158
158
  zh_TW.prototype.everyX0Hours = function () {
159
159
  return "每 %s 小時";
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/zh_TW.min",["cronstrue"],e):"object"==typeof exports?exports["locales/zh_TW.min"]=e(require("cronstrue")):t["locales/zh_TW.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},o={};function n(t){var r=o[t];if(void 0!==r)return r.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,n),u.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};n.r(r);var u=n(93),p=n.n(u),c=r;Object.defineProperty(c,"__esModule",{value:!0}),c.zh_TW=void 0;var y=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", 從 %s 年至 %s 年"},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"每分鐘"},t.prototype.everyHour=function(){return"每小時"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"產生表達式描述時發生了錯誤,請檢查 cron 表達式語法。"},t.prototype.atSpace=function(){return"在 "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"在 %s 和 %s 之間的每分鐘"},t.prototype.at=function(){return"在"},t.prototype.spaceAnd=function(){return" 和"},t.prototype.everySecond=function(){return"每秒"},t.prototype.everyX0Seconds=function(){return"每 %s 秒"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"在每分鐘的 %s 到 %s 秒"},t.prototype.atX0SecondsPastTheMinute=function(){return"在每分鐘的 %s 秒"},t.prototype.everyX0Minutes=function(){return"每 %s 分鐘"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"在每小時的 %s 到 %s 分鐘"},t.prototype.atX0MinutesPastTheHour=function(){return"在每小時的 %s 分"},t.prototype.everyX0Hours=function(){return"每 %s 小時"},t.prototype.betweenX0AndX1=function(){return"在 %s 和 %s 之間"},t.prototype.atX0=function(){return"在 %s"},t.prototype.commaEveryDay=function(){return", 每天"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 每週的每 %s 天"},t.prototype.commaX0ThroughX1=function(){return", %s 到 %s"},t.prototype.commaAndX0ThroughX1=function(){return", 和 %s 到 %s"},t.prototype.first=function(){return"第一個"},t.prototype.second=function(){return"第二個"},t.prototype.third=function(){return"第三個"},t.prototype.fourth=function(){return"第四個"},t.prototype.fifth=function(){return"第五個"},t.prototype.commaOnThe=function(){return", 在每月 "},t.prototype.spaceX0OfTheMonth=function(){return"%s "},t.prototype.lastDay=function(){return"最後一天"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 每月的最後一個 %s "},t.prototype.commaOnlyOnX0=function(){return", 僅在 %s"},t.prototype.commaAndOnX0=function(){return", 或 %s"},t.prototype.commaEveryX0Months=function(){return", 每 %s 月"},t.prototype.commaOnlyInX0=function(){return", 僅在 %s"},t.prototype.commaOnlyInMonthX0=function(){return", 僅在 %s"},t.prototype.commaOnlyInYearX0=function(){return", 僅在 %s 年"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 每月的最後一天"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 每月的最後一個工作日"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s 這個月的最後一天的前幾天"},t.prototype.firstWeekday=function(){return"第一個工作日"},t.prototype.weekdayNearestDayX0=function(){return"最接近 %s 號的工作日"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 每月的 %s "},t.prototype.commaEveryX0Days=function(){return", 每 %s 天"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 在每月的 %s 和 %s 之間"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 每月的 %s"},t.prototype.commaEveryX0Years=function(){return", 每 %s 年"},t.prototype.commaStartingX0=function(){return", %s 開始"},t.prototype.dayX0=function(){return" %s 號"},t.prototype.daysOfTheWeek=function(){return["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},t.prototype.monthsOfTheYear=function(){return["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},t}();return c.zh_TW=y,p().locales.zh_TW=new y,r})()));
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("cronstrue")):"function"==typeof define&&define.amd?define("locales/zh_TW.min",["cronstrue"],e):"object"==typeof exports?exports["locales/zh_TW.min"]=e(require("cronstrue")):t["locales/zh_TW.min"]=e(t.cronstrue)}(globalThis,(t=>(()=>{"use strict";var e={93:e=>{e.exports=t}},o={};function n(t){var r=o[t];if(void 0!==r)return r.exports;var u=o[t]={exports:{}};return e[t](u,u.exports,n),u.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var o in e)n.o(e,o)&&!n.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),n.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};n.r(r);var u=n(93),p=n.n(u),c=r;Object.defineProperty(c,"__esModule",{value:!0}),c.zh_TW=void 0;var y=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", 從 %s 年至 %s 年"},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"每分鐘"},t.prototype.everyHour=function(){return"每小時"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"產生表達式描述時發生了錯誤,請檢查 cron 表達式語法。"},t.prototype.atSpace=function(){return"在 "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"在 %s 和 %s 之間的每分鐘"},t.prototype.at=function(){return"在"},t.prototype.spaceAnd=function(){return" 和"},t.prototype.everySecond=function(){return"每秒"},t.prototype.everyX0Seconds=function(){return"每 %s 秒"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"在一分鐘後的 %s 到 %s 秒"},t.prototype.atX0SecondsPastTheMinute=function(){return"在一分鐘後的 %s 秒"},t.prototype.everyX0Minutes=function(){return"每 %s 分鐘"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"在整點後的 %s 到 %s 分鐘"},t.prototype.atX0MinutesPastTheHour=function(){return"在整點後的 %s 分"},t.prototype.everyX0Hours=function(){return"每 %s 小時"},t.prototype.betweenX0AndX1=function(){return"在 %s 和 %s 之間"},t.prototype.atX0=function(){return"在 %s"},t.prototype.commaEveryDay=function(){return", 每天"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", 每週的每 %s 天"},t.prototype.commaX0ThroughX1=function(){return", %s 到 %s"},t.prototype.commaAndX0ThroughX1=function(){return", 和 %s 到 %s"},t.prototype.first=function(){return"第一個"},t.prototype.second=function(){return"第二個"},t.prototype.third=function(){return"第三個"},t.prototype.fourth=function(){return"第四個"},t.prototype.fifth=function(){return"第五個"},t.prototype.commaOnThe=function(){return", 在每月 "},t.prototype.spaceX0OfTheMonth=function(){return"%s "},t.prototype.lastDay=function(){return"最後一天"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", 每月的最後一個 %s "},t.prototype.commaOnlyOnX0=function(){return", 僅在 %s"},t.prototype.commaAndOnX0=function(){return", 或 %s"},t.prototype.commaEveryX0Months=function(){return", 每 %s 月"},t.prototype.commaOnlyInX0=function(){return", 僅在 %s"},t.prototype.commaOnlyInMonthX0=function(){return", 僅在 %s"},t.prototype.commaOnlyInYearX0=function(){return", 僅在 %s 年"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", 每月的最後一天"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 每月的最後一個工作日"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s 這個月的最後一天的前幾天"},t.prototype.firstWeekday=function(){return"第一個工作日"},t.prototype.weekdayNearestDayX0=function(){return"最接近 %s 號的工作日"},t.prototype.commaOnTheX0OfTheMonth=function(){return", 每月的 %s "},t.prototype.commaEveryX0Days=function(){return", 每 %s 天"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 在每月的 %s 和 %s 之間"},t.prototype.commaOnDayX0OfTheMonth=function(){return", 每月的 %s"},t.prototype.commaEveryX0Years=function(){return", 每 %s 年"},t.prototype.commaStartingX0=function(){return", %s 開始"},t.prototype.dayX0=function(){return" %s 號"},t.prototype.daysOfTheWeek=function(){return["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},t.prototype.monthsOfTheYear=function(){return["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},t}();return c.zh_TW=y,p().locales.zh_TW=new y,r})()));
@@ -1 +1 @@
1
- {"name":"cronstrue","title":"cRonstrue","version":"2.52.0","description":"Convert cron expressions into human readable descriptions","author":"Brady Holt","license":"MIT","bugs":{"url":"https://github.com/bradymholt/cronstrue/issues"},"homepage":"https://github.com/bradymholt/cronstrue","keywords":["cron","cronjob","crontab","schedule","parser","cron expression","cron description","pretty cron","cron for humans","cron translated","cron english","cron schedule","cron english","cron schedule"],"main":"dist/cronstrue.js","bin":{"cronstrue":"bin/cli.js"},"typings":"dist/cronstrue.d.ts","files":["dist/","locales/","i18n.js","i18n.d.ts"],"repository":{"type":"git","url":"git+https://github.com/bradymholt/cronstrue.git"},"publishConfig":{"access":"public"},"prettier":{"printWidth":120},"devDependencies":{"@types/chai":"^4.2.11","@types/mocha":"^8.0.0","chai":"^4.2.0","handlebars":"^4.7.6","marked":"^4.0.10","mocha":"^10.1.0","pixl-xml":"^1.0.13","prettier":"^2.1.1","terser-webpack-plugin":"^5.3.1","ts-loader":"^9.2.6","ts-node":"^10.5.0","typescript":"^4.6.2","webpack":"^5.69.1","webpack-cli":"^4.9.2","xml2js":"^0.5.0"},"scripts":{"start":"npm run build","build":"npx tsc -p ./src --emitDeclarationOnly","test":"npx mocha --reporter spec --require ts-node/register \"./test/**/*.ts\"","prepublishOnly":"rm -rf ./dist && ./node_modules/webpack-cli/bin/cli.js && git add -A"},"dependencies":{},"_lastModified":"2025-08-02T21:25:05.706Z"}
1
+ {"name":"cronstrue","title":"cRonstrue","version":"3.2.0","description":"Convert cron expressions into human readable descriptions","author":"Brady Holt","license":"MIT","bugs":{"url":"https://github.com/bradymholt/cronstrue/issues"},"homepage":"https://github.com/bradymholt/cronstrue","keywords":["cron","cronjob","crontab","schedule","parser","cron expression","cron description","pretty cron","cron for humans","cron translated","cron english","cron schedule","cron english","cron schedule"],"main":"dist/cronstrue.js","bin":{"cronstrue":"bin/cli.js"},"typings":"dist/cronstrue.d.ts","files":["dist/","locales/","i18n.js","i18n.d.ts"],"repository":{"type":"git","url":"git+https://github.com/bradymholt/cronstrue.git"},"publishConfig":{"access":"public"},"prettier":{"printWidth":120},"devDependencies":{"@types/chai":"^4.2.11","@types/mocha":"^8.0.0","chai":"^4.2.0","handlebars":"^4.7.6","marked":"^4.0.10","mocha":"^10.1.0","pixl-xml":"^1.0.13","prettier":"^2.1.1","terser-webpack-plugin":"^5.3.1","ts-loader":"^9.2.6","ts-node":"^10.5.0","typescript":"^4.6.2","webpack":"^5.69.1","webpack-cli":"^4.9.2","xml2js":"^0.5.0"},"scripts":{"start":"npm run build","build":"npx tsc -p ./src --emitDeclarationOnly","test":"npx mocha --reporter spec --require ts-node/register \"./test/**/*.ts\"","prepublishOnly":"rm -rf ./dist && ./node_modules/webpack-cli/bin/cli.js && git add -A"},"dependencies":{},"_lastModified":"2025-09-02T09:52:11.390Z"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tachybase/module-web",
3
3
  "displayName": "WEB client",
4
- "version": "1.3.23",
4
+ "version": "1.3.25",
5
5
  "description": "Provides a client interface for the TachyBase server",
6
6
  "keywords": [
7
7
  "System management"
@@ -11,17 +11,17 @@
11
11
  "dependencies": {},
12
12
  "devDependencies": {
13
13
  "@ant-design/icons": "^5.6.1",
14
- "@tachybase/schema": "^1.3.43",
15
- "@tachybase/test": "^1.3.43",
16
- "@tego/client": "^1.3.43",
17
- "@tego/server": "^1.3.43",
14
+ "@tachybase/schema": "*",
15
+ "@tachybase/test": "*",
16
+ "@tego/client": "*",
17
+ "@tego/server": "*",
18
18
  "@types/react": "~18.3.23",
19
19
  "@types/react-dom": "~18.3.7",
20
20
  "ahooks": "^3.9.0",
21
21
  "antd": "5.22.5",
22
22
  "antd-mobile": "^5.39.0",
23
23
  "antd-mobile-icons": "^0.3.0",
24
- "cronstrue": "^2.52.0",
24
+ "cronstrue": "^3.2.0",
25
25
  "dayjs": "^1.11.13",
26
26
  "koa-send": "^5.0.1",
27
27
  "koa-static": "^5.0.0",
@@ -30,7 +30,7 @@
30
30
  "react-dom": "18.3.1",
31
31
  "react-i18next": "15.2.0",
32
32
  "react-router-dom": "6.28.1",
33
- "@tachybase/client": "1.3.23"
33
+ "@tachybase/client": "1.3.25"
34
34
  },
35
35
  "description.zh-CN": "为 TachyBase 服务端提供客户端界面",
36
36
  "displayName.zh-CN": "WEB 客户端",