@forcecalendar/core 2.1.62 → 2.1.63
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/core/index.js +1 -1
- package/package.json +3 -2
package/core/index.js
CHANGED
|
@@ -28,7 +28,7 @@ export { RRuleParser } from './events/RRuleParser.js';
|
|
|
28
28
|
export { EnhancedCalendar } from './integration/EnhancedCalendar.js';
|
|
29
29
|
|
|
30
30
|
// Version — keep in sync with package.json
|
|
31
|
-
export const VERSION = '2.1.
|
|
31
|
+
export const VERSION = '2.1.63';
|
|
32
32
|
|
|
33
33
|
// Default export
|
|
34
34
|
export { Calendar as default } from './calendar/Calendar.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forcecalendar/core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.63",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "A modern, lightweight, framework-agnostic calendar engine optimized for Salesforce",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"lint:fix": "eslint core/ --ext .js --fix",
|
|
17
17
|
"format": "prettier --write \"core/**/*.js\"",
|
|
18
18
|
"format:check": "prettier --check \"core/**/*.js\"",
|
|
19
|
-
"quality": "npm run lint && npm run format:check"
|
|
19
|
+
"quality": "npm run lint && npm run format:check",
|
|
20
|
+
"sync:version": "node scripts/sync-version.js"
|
|
20
21
|
},
|
|
21
22
|
"exports": {
|
|
22
23
|
".": "./core/index.js",
|