diff --git a/README.md b/README.md index dc40eba0..600a6402 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ If you are working with a browser, be aware this is an ES6 module: ```html + ``` +The browser examples above use the minified versions of the library, which is probably what you want. +However, there are also unminified versions of ICAL.js available on unpkg. + +- Unminified ES6 module: `https://unpkg.com/ical.js/dist/ical.js` +- Unminified ES5 version: `https://unpkg.com/ical.js/dist/ical.es5.cjs` + ## Timezones The stock ical.js does not register any timezones, due to the additional size it brings. If you'd like to do timezone conversion, and the timezone definitions are not included in the respective ics diff --git a/package.json b/package.json index 7e40a551..aebac8f7 100644 --- a/package.json +++ b/package.json @@ -67,8 +67,8 @@ "ghpages": "npm run jsdoc && npm run validator && npm run recurtester" }, "exports": { - "import": "./dist/ical.min.js", - "require": "./dist/ical.es5.min.cjs" + "import": "./dist/ical.js", + "require": "./dist/ical.es5.cjs" }, "files": [ "dist/ical.js",