Skip to content

Commit 7a3745e

Browse files
author
Justine De Caires
committed
twitter/twemoji-parser -> jdecked/twemoji-parser
1 parent cc4e0ca commit 7a3745e

File tree

6 files changed

+22
-24
lines changed

6 files changed

+22
-24
lines changed

CONTRIBUTING.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ We'd love to get patches from you!
1414

1515
We follow the [GitHub Flow Workflow](https://guides.github.com/introduction/flow/)
1616

17-
1. Fork the project
18-
1. Check out the `master` branch
17+
1. Fork the project
18+
1. Check out the `master` branch
1919
1. Create a feature branch
20-
1. Write code and tests for your change
21-
1. From your branch, make a pull request against `https://github.com/twitter/twemoji-parser/master`
22-
1. Work with repo maintainers to get your change reviewed
23-
1. Wait for your change to be pulled into `https://github.com/twitter/twemoji-parser/master`
20+
1. Write code and tests for your change
21+
1. From your branch, make a pull request against `https://github.com/jdecked/twemoji-parser/master`
22+
1. Work with repo maintainers to get your change reviewed
23+
1. Wait for your change to be pulled into `https://github.com/jdecked/twemoji-parser/master`
2424
1. Delete your feature branch
2525

2626
## Testing
@@ -78,12 +78,12 @@ columns (You can use `fmt -n -p -w 80` to accomplish this).
7878

7979
Some important notes regarding the summary line:
8080

81-
* Describe what was done; not the result
82-
* Use the active voice
83-
* Use the present tense
84-
* Capitalize properly
85-
* Do not end in a period — this is a title/subject
86-
* Prefix the subject with its scope
81+
- Describe what was done; not the result
82+
- Use the active voice
83+
- Use the present tense
84+
- Capitalize properly
85+
- Do not end in a period — this is a title/subject
86+
- Prefix the subject with its scope
8787

8888
## Code Review
8989

@@ -108,12 +108,12 @@ authorship metadata will be preserved.
108108
## Documentation
109109

110110
We also welcome improvements to the project documentation or to the existing
111-
docs. Please file an [issue](https://github.com/https://github.com/twitter/twemoji-parser/issues).
111+
docs. Please file an [issue](https://github.com/https://github.com/jdecked/twemoji-parser/issues).
112112

113-
# License
113+
# License
114114

115-
By contributing your code, you agree to license your contribution under the
116-
terms of: https://github.com/https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md
115+
By contributing your code, you agree to license your contribution under the
116+
terms of: https://github.com/https://github.com/jdecked/twemoji-parser/blob/master/LICENSE.md
117117

118118
# Code of Conduct
119119

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ entities = [
4343

4444
- Nathan Downs <ndowns [at] twitter [dot] com>
4545

46-
Follow [@TwitterOSS](https://twitter.com/twitteross) on Twitter for updates.
47-
4846
## Contributing
4947

5048
We feel that a welcoming community is important and we ask that you follow Twitter's
@@ -53,12 +51,12 @@ in all interactions with the community.
5351

5452
## Support
5553

56-
Create a [new issue](https://github.com/twitter/twemoji-parser/issues/new) on GitHub.
54+
Create a [new issue](https://github.com/jdecked/twemoji-parser/issues/new) on GitHub.
5755

5856
## Security Issues?
5957

6058
Please report sensitive security issues via Twitter's bug-bounty program (https://hackerone.com/twitter) rather than GitHub.
6159

6260
## License
6361

64-
MIT https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md
62+
MIT https://github.com/jdecked/twemoji-parser/blob/master/LICENSE.md

src/__tests__/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Twitter Inc. Licensed under MIT
2-
// https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md
2+
// https://github.com/jdecked/twemoji-parser/blob/master/LICENSE.md
33
import { parse, TypeName } from '..';
44

55
test('TypeName is exported', () => {

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @flow
22
// Copyright Twitter Inc. Licensed under MIT
3-
// https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md
3+
// https://github.com/jdecked/twemoji-parser/blob/master/LICENSE.md
44
import emojiRegex from './lib/regex';
55

66
type EmojiEntity = {|

src/lib/regex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scala/generator/src/main/resources/codegen/regex.js.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright Twitter Inc. Licensed under MIT
2-
// https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md
2+
// https://github.com/jdecked/twemoji-parser/blob/master/LICENSE.md
33

44
// This file is generated by src/scala/scripts/generate.sh
55
export default /{{!

0 commit comments

Comments
 (0)