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

Replace npmcdn.com with unpkg.com #73

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ Then with a module bundler like [webpack](https://webpack.github.io/), use as yo
import AsyncProps from 'async-props'
```

The UMD build is also available on [npmcdn](https://npmcdn.com):
The UMD build is also available on [unpkg](https://unpkg.com):

```html
<script src="https://npmcdn.com/async-props/umd/AsyncProps.min.js"></script>
<script src="https://unpkg.com/async-props/umd/AsyncProps.min.js"></script>
```

You can find the library on `window.AsyncProps`.
Expand Down