Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lib path references in website needs to be updated. #22

Closed
rajasegar opened this issue May 29, 2021 · 1 comment · Fixed by #23
Closed

Lib path references in website needs to be updated. #22

rajasegar opened this issue May 29, 2021 · 1 comment · Fixed by #23

Comments

@rajasegar
Copy link
Contributor

rajasegar commented May 29, 2021

Since we have moved to rollup bundling and the dist assets path has been changed to /dist, we need to update the same in the website.

Old

import * as parsel from "https://projects.verou.me/parsel/parsel.js"
<script src="https://projects.verou.me/parsel/parsel_nomodule.js"></script>

<script type="module">
	import * as parsel from "https://projects.verou.me/parsel/parsel.js";
	window.parsel = parsel;
</script>

New

import * as parsel from "https://projects.verou.me/parsel/dist/parsel.js"
<script src="https://projects.verou.me/parsel/dist/nomodule/parsel.js"></script>

<script type="module">
	import * as parsel from "https://projects.verou.me/parsel/dist/parsel.js";
	window.parsel = parsel;
</script>
@rajasegar
Copy link
Contributor Author

@LeaVerou Raised the PR here #23

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant