Skip to content

Commit 2b5e5ca

Browse files
author
Dimi Mikadze
committed
Move repo from udilia to dimimikadze
1 parent b7eda9b commit 2b5e5ca

File tree

8 files changed

+18
-20
lines changed

8 files changed

+18
-20
lines changed

Diff for: CONTRIBUTING.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Contributing to Create React Library
22

3-
Create React Library is a open source project maintained by [udilia](https://udilia.com/).
4-
53
All efforts to contribute are highly appreciated, we recommend you talk to a maintainer prior to spending a lot of time making a pull request that may not align with the project roadmap.
64

75
## Submitting a Pull Request
@@ -19,26 +17,26 @@ lib
1917
template
2018
```
2119

22-
#### [template](https://github.com/udilia/create-react-library/tree/master/template)
20+
#### [template](https://github.com/dimimikadze/create-react-library/tree/master/template)
2321

2422
Is a Create React App's template that is modified to build NPM Libraries with React.
2523

26-
#### [lib](https://github.com/udilia/create-react-library/tree/master/lib)
24+
#### [lib](https://github.com/dimimikadze/create-react-library/tree/master/lib)
2725

2826
This package includes Node.js command line script that is published to NPM as a `@udilia/create-react-library` that helps users to install the template with one command.
2927

3028
## Development Workflow
3129

32-
1. Clone the repo with `git clone https://github.com/udilia/create-react-library.git`
30+
1. Clone the repo with `git clone https://github.com/dimimikadze/create-react-library.git`
3331
2. cd into `create-react-library/template` run `yarn` to install dependencies.
3432
3. and then run `yarn start`
3533

3634
## Reporting an issue
3735

3836
Before submitting an issue you need to make sure:
3937

40-
- You have already searched for related [issues](https://github.com/udilia/create-react-library/issues), and found none open (if you found a related closed issue, please link to it from your post).
38+
- You have already searched for related [issues](https://github.com/dimimikadze/create-react-library/issues), and found none open (if you found a related closed issue, please link to it from your post).
4139
- Your issue title is concise and on-topic.
4240
- You can and do provide steps to reproduce your issue.
43-
- Make sure the [issue template](https://github.com/udilia/create-react-library/tree/master/.github/ISSUE_TEMPLATE) is respected.
41+
- Make sure the [issue template](https://github.com/dimimikadze/create-react-library/tree/master/.github/ISSUE_TEMPLATE) is respected.
4442
- Make sure your issue body is readable and [well formated](https://guides.github.com/features/mastering-markdown/).

Diff for: LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019 udilia.
1+
Copyright (c) 2019 dimimikadze.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Publishes the library to NPM.
9696

9797
## Contributing
9898

99-
Please read our [CONTRIBUTING.md](https://github.com/udilia/create-react-library/blob/master/CONTRIBUTING.md) before submitting a Pull Request to the project.
99+
Please read our [CONTRIBUTING.md](https://github.com/dimimikadze/create-react-library/blob/master/CONTRIBUTING.md) before submitting a Pull Request to the project.
100100

101101
## Typescript
102102

@@ -116,4 +116,4 @@ https://github.com/DimiMikadze/react-under-construction
116116

117117
## License
118118

119-
[MIT License](https://github.com/udilia/create-react-library/blob/master/LICENSE.md) Copyright (c) 2019 [udilia](https://udilia.com/)
119+
[MIT License](https://github.com/dimimikadze/create-react-library/blob/master/LICENSE.md) Copyright (c) 2019 [Dimi Mikadze](https://dimimikadze.com/)

Diff for: UPGRADE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
To upgrade a library based on `create-react-library`
66

7-
- Clone updated `create-react-library` in a new folder `git clone https://github.com/udilia/create-react-library.git new-create-react-library`
7+
- Clone updated `create-react-library` in a new folder `git clone https://github.com/dimimikadze/create-react-library.git new-create-react-library`
88
- Copy `config`, `public`, `scripts` folders over to your project
99
- Copy `.gitignore`, `.npmignore` files over to your project
1010
- Copy and adapt `src/demo` folders over to your project
@@ -15,7 +15,7 @@ To upgrade a library based on `create-react-library`
1515

1616
To upgrade `create-react-library` project
1717

18-
- Fork [udilia/create-react-library](https://github.com/udilia/create-react-library.git) repository
18+
- Fork [dimimikadze/create-react-library](https://github.com/dimimikadze/create-react-library.git) repository
1919
- Clone your fork
2020
- Create a new `create-react-app` project in another folder and `eject`
2121

@@ -45,4 +45,4 @@ To upgrade `create-react-library` project
4545

4646
- Check that `yarn start`, `yarn test`, `yarn build` and `yarn demo` scripts still work and produce the same output as before.
4747

48-
- Open a `PR` to [udilia/create-react-library](https://github.com/udilia/create-react-library.git) repository
48+
- Open a `PR` to [dimimikadze/create-react-library](https://github.com/dimimikadze/create-react-library.git) repository

Diff for: lib/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"description": "Create React NPM Library with no build configuration.",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/udilia/create-react-library.git",
7+
"url": "https://github.com/dimimikadze/create-react-library.git",
88
"directory": "lib"
99
},
1010
"bugs": {
11-
"url": "https://github.com/udilia/create-react-library/issues"
11+
"url": "https://github.com/dimimikadze/create-react-library/issues"
1212
},
1313
"files": [
1414
"index.js",

Diff for: lib/utils/cloneRepository.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ const tryGitClone = (url, projectName) => {
1212
};
1313

1414
/**
15-
* Clones the @udilia/create-react-library repository
15+
* Clones the create-react-library repository
1616
*
1717
* @param {string} projectName
1818
*/
1919
module.exports = projectName => {
20-
const httpsUrl = 'https://github.com/udilia/create-react-library.git';
21-
const sshUrl = '[email protected]:udilia/create-react-library.git';
20+
const httpsUrl = 'https://github.com/dimimikadze/create-react-library.git';
21+
const sshUrl = '[email protected]:dimimikadze/create-react-library.git';
2222
const root = path.resolve(projectName);
2323

2424
console.log();

Diff for: template/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This project was bootstrapped with [Create React Library](https://github.com/udilia/create-react-library).
1+
This project was bootstrapped with [Create React Library](https://github.com/dimimikadze/create-react-library).
22

33
All library files are located inside **src/lib** folder.
44

Diff for: template/src/lib/components/SecondExample.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const SecondExample = () => (
1818
className="SecondExample-github-link"
1919
target="_blank"
2020
rel="noopener noreferrer"
21-
href="https://github.com/udilia/create-react-library"
21+
href="https://github.com/dimimikadze/create-react-library"
2222
>
2323
Documentation
2424
</a>

0 commit comments

Comments
 (0)