@fullcalendar/moment-timezone 6.0.0-beta.2 → 6.0.0-beta.4

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/index.cjs CHANGED
@@ -3,8 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var index_cjs = require('@fullcalendar/core/index.cjs');
6
- var moment = require('moment');
7
- require('moment-timezone');
6
+ var moment = require('moment-timezone');
8
7
  var internal_cjs = require('@fullcalendar/core/internal.cjs');
9
8
 
10
9
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
package/index.global.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- FullCalendar Moment Timezone Plugin v6.0.0-beta.2
2
+ FullCalendar Moment Timezone Plugin v6.0.0-beta.4
3
3
  Docs & License: https://fullcalendar.io/
4
4
  (c) 2022 Adam Shaw
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- FullCalendar Moment Timezone Plugin v6.0.0-beta.2
2
+ FullCalendar Moment Timezone Plugin v6.0.0-beta.4
3
3
  Docs & License: https://fullcalendar.io/
4
4
  (c) 2022 Adam Shaw
5
5
  */
package/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { createPlugin } from '@fullcalendar/core/index.js';
2
- import moment from 'moment';
3
- import 'moment-timezone';
2
+ import moment from 'moment-timezone';
4
3
  import { NamedTimeZoneImpl } from '@fullcalendar/core/internal.js';
5
4
 
6
5
  class MomentNamedTimeZone extends NamedTimeZoneImpl {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fullcalendar/moment-timezone",
3
- "version": "6.0.0-beta.2",
3
+ "version": "6.0.0-beta.4",
4
4
  "keywords": [
5
5
  "calendar",
6
6
  "event",
@@ -26,24 +26,23 @@
26
26
  "title": "FullCalendar Moment Timezone Plugin",
27
27
  "description": "A connector to the moment-timezone library",
28
28
  "peerDependencies": {
29
- "@fullcalendar/core": "6.0.0-beta.2",
30
- "moment": "^2.29.1",
29
+ "@fullcalendar/core": "6.0.0-beta.4",
31
30
  "moment-timezone": "^0.5.31"
32
31
  },
33
32
  "main": "./index.cjs",
34
33
  "module": "./index.js",
35
34
  "types": "./index.d.ts",
36
35
  "unpkg": "./index.global.min.js",
37
- "jsdelvr": "./index.global.min.js",
36
+ "jsdelivr": "./index.global.min.js",
38
37
  "exports": {
39
38
  "./package.json": "./package.json",
40
39
  "./index.cjs": "./index.cjs",
41
40
  "./index.js": "./index.js",
42
41
  ".": {
43
- "require": "./index.cjs",
44
- "import": "./index.js",
45
42
  "types": "./index.d.ts",
46
- "default": "./index.global.js"
43
+ "require": "./index.cjs",
44
+ "import": "./index.js"
47
45
  }
48
- }
46
+ },
47
+ "sideEffects": false
49
48
  }