add-to-calendar-button 2.3.2 → 2.3.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/dist/atcb.js +6 -5
- package/dist/commonjs/index.js +61 -34
- package/dist/module/index.js +61 -34
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/test/server-side-init.test.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/* eslint-disable no-undef */
|
|
2
2
|
|
|
3
|
-
// simple import of the atcb JS
|
|
3
|
+
// simple import of the atcb JS, to ensure it can load in Node
|
|
4
4
|
// it shall not run on the server, but also should not block it!
|
|
5
|
-
require('../dist/atcb.js');
|
|
6
5
|
require('../dist/commonjs/index.js');
|