Skip to content

Commit 3499580

Browse files
authored
fix: Use lowercase in package and module name (#20)
Fixes #18
2 parents 173af81 + 2f9a073 commit 3499580

19 files changed

+23
-23
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
test:
1313
name: Test
14-
uses: github/ariaNotify-polyfill/.github/workflows/test.yml@main
14+
uses: github/arianotify-polyfill/.github/workflows/test.yml@main
1515
secrets: inherit
1616
publish-npm:
1717
needs: [test]

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Contributing
22

3-
[fork]: https://github.com/github/ariaNotify-polyfill/fork
4-
[pr]: https://github.com/github/ariaNotify-polyfill/compare
3+
[fork]: https://github.com/github/arianotify-polyfill/fork
4+
[pr]: https://github.com/github/arianotify-polyfill/compare
55

66
Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
77

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ariaNotify-polyfill
1+
# arianotify-polyfill
22

33
Polyfill for the [ARIA Notification API](https://github.com/WICG/accessible-notifications/blob/main/README.md)
44

@@ -15,13 +15,13 @@ In browsers where `ariaNotify` is supported it will emit a notification event. I
1515
This is only meant to be used in a browser context. It should not be used on the server. To install this you will likely need `npm`.
1616

1717
```sh
18-
$ npm i @github/ariaNotify-polyfill
18+
$ npm i @github/arianotify-polyfill
1919
```
2020

2121
In your JavaScript you can introduce the polyfill using a "bare" import:
2222

2323
```js
24-
import "@github/ariaNotify-polyfill"
24+
import "@github/arianotify-polyfill"
2525
```
2626

2727
Then continue to use `ariaNotify` as if it were supported everywhere. A small contrived example:

SUPPORT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Support
1+
# Support
22

33
## How to file issues and get help
44

55
This project uses GitHub issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new issue.
66

7-
For help or questions about using this project, please reach out [on the discussions page](https://github.com/github/ariaNotify-polyfill/discussions).
7+
For help or questions about using this project, please reach out [on the discussions page](https://github.com/github/arianotify-polyfill/discussions).
88

9-
ariaNotify-polyfill is under active development and maintained by GitHub staff **AND THE COMMUNITY**. We will do our best to respond to support, feature requests, and community questions in a timely manner.
9+
arianotify-polyfill is under active development and maintained by GitHub staff **AND THE COMMUNITY**. We will do our best to respond to support, feature requests, and community questions in a timely manner.
1010

1111
## GitHub Support Policy
1212

File renamed without changes.

examples/ariaNotify-polyfill.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/arianotify-polyfill.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../arianotify-polyfill.js

examples/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ <h1>ariaNotify Polyfill Examples</h1>
3636
</p>
3737
<p>
3838
View the code on GitHub:
39-
<a href="https://github.com/github/ariaNotify-polyfill"
40-
>github/ariaNotify-polyfill</a
39+
<a href="https://github.com/github/arianotify-polyfill"
40+
>github/arianotify-polyfill</a
4141
>
4242
(Only accessible to GitHub employees, for now)
4343
</p>
@@ -117,6 +117,6 @@ <h2>Playground</h2>
117117
reset.disabled = true
118118
})
119119
</script>
120-
<script src="./ariaNotify-polyfill.js"></script>
120+
<script src="./arianotify-polyfill.js"></script>
121121
</body>
122122
</html>

examples/kanban/ariaNotify-polyfill.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../arianotify-polyfill.js

0 commit comments

Comments
 (0)