Skip to content

Commit 73f19e2

Browse files
committed
Creates new contributor home page. Update references to the new repo
1 parent fc867be commit 73f19e2

15 files changed

Lines changed: 70 additions & 51 deletions

.github/ISSUE_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
1010
2) Some of the most frequently asked questions have the answer for them in the documentation.
1111
Be sure to read through the API carefully before publishing an issue:
12-
https://github.com/YouCanBookMe/react-datetime#api
12+
https://github.com/arqex/react-datetime#api
1313
We also use the label *Documentation* for issues that have code examples in them which may be
1414
useful for other developers, please have a look there as well:
15-
https://github.com/YouCanBookMe/react-datetime/issues?utf8=%E2%9C%93&q=label%3Adocumentation%20
15+
https://github.com/arqex/react-datetime/issues?utf8=%E2%9C%93&q=label%3Adocumentation%20
1616
1717
3) Discussions for version 3 of react-datetime has been initiated, and we have come up with some
1818
feature and bug candidates. This means that if a feature or bug has been requested/reported many
1919
times, it's likely to be a candidate for version 3. Make sure your bug or feature is not included
2020
in this list before publishing it.
2121
2222
You can find all the candidates here in the *Candidates* column:
23-
https://github.com/YouCanBookMe/react-datetime/projects/1
23+
https://github.com/arqex/react-datetime/projects/1
2424
-->
2525

2626

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Changelog
1212
* `onViewModeChange` prop renamed to `onNavigate`.
1313
* Creates `onBeforeNavigate` prop.
1414
* Creates `setViewData` and `navigate` methods.
15-
* Fixes error clicking on days from the previous or next month in the days view
16-
* Fixes month, year and time views for locales that doesn't use gregorian numbers
17-
* Adds a playground to make simpler to try out the library by `npm run playground`
15+
* Fixes error clicking on days from the previous or next month in the days view.
16+
* Fixes month, year and time views for locales that doesn't use gregorian numbers.
17+
* Adds a playground to make simpler to try out the library by `npm run playground`.
1818
* Not depending on gulp to create the build anymore
19-
* Updated most of the dependencies
19+
* Updated most of the dependencies.
2020

2121
## 2.16.2
2222
* Turns moment timezone peer dependency in a runtime error when missing using `displayTimezone`.
@@ -66,7 +66,7 @@ Changelog
6666

6767
## 2.10.2
6868
* Move @types/react back to devDependencies
69-
* Add [demo](https://youcanbookme.github.io/react-datetime) app.
69+
* Add [demo](https://codesandbox.io/s/boring-dew-uzln3) app.
7070

7171
## 2.10.1
7272
* Fix build files.

README.md

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# react-datetime
22

3-
[![Build Status](https://secure.travis-ci.org/YouCanBookMe/react-datetime.svg)](https://travis-ci.org/YouCanBookMe/react-datetime)
3+
[![Build Status](https://secure.travis-ci.org/arqex/react-datetime.svg)](https://travis-ci.org/arqex/react-datetime)
44
[![npm version](https://badge.fury.io/js/react-datetime.svg)](http://badge.fury.io/js/react-datetime)
55

66
A date and time picker in the same React.js component. It can be used as a datepicker, timepicker or both at the same time. It is **highly customizable** and it even allows to edit date's milliseconds.
77

8-
These are the docs for version 3 of the library. If you are still using the deprecated v2, [here it is its documentation](https://github.com/YouCanBookMe/react-datetime/blob/2a83208452ac5e41c43fea31ef47c65efba0bb56/README.md), but we strongly recommend to migrate to version 3 in order to keep receiving updates. Please check [migrating react-datetime to version 3](migrateToV3.md) to safely update your app.
8+
> **Back to the roots!** Thanks to the people of [YouCanBook.me (best scheduling tool)](https://youcanbook.me) for sponsoring react-datetime for so long. Now the project returns to the community and we are **looking for collaborators** to continue improving react-datetime. [Would you like to give a hand?](contribute-home.md)
9+
10+
These are the docs for version 3 of the library. If you are still using the deprecated v2, [here it is its documentation](https://github.com/arqex/react-datetime/blob/2a83208452ac5e41c43fea31ef47c65efba0bb56/README.md), but we strongly recommend to migrate to version 3 in order to keep receiving updates. Please check [migrating react-datetime to version 3](migrateToV3.md) to safely update your app.
911

1012
## Installation
1113

@@ -35,7 +37,7 @@ render: function() {
3537
```
3638
[See this example working](https://codesandbox.io/s/boring-dew-uzln3).
3739

38-
**Don't forget to add the [CSS stylesheet](https://github.com/YouCanBookMe/react-datetime/blob/master/css/react-datetime.css) to make it work out of the box.**
40+
**Don't forget to add the [CSS stylesheet](https://github.com/arqex/react-datetime/blob/master/css/react-datetime.css) to make it work out of the box.**
3941

4042
## API
4143

@@ -288,23 +290,9 @@ class MyDTPicker extends React.Component<MyDTPickerProps, MyDTPickerState> {
288290
```
289291
290292
## Contributions
291-
react-datetime is a nice choice if you are looking for some open-source project to lay your hands on. It's a library used by thousands of developers, and the changes in this version make easier for everyone to understand it. It's not simple, but it's small enough to be get you initiated in a couple of hours.
292-
293-
If you are interested and want to start playing with its code, clone it and fire up the playground included in the repo:
294-
295-
```sh
296-
git clone https://github.com/YouCanBookMe/react-datetime.git
297-
cd react-datetime
298-
npm install
299-
npm run playground
300-
```
301-
302-
This will start a local development server building `src/index.js`. We can update react-datetime's sources then and our changes will be hot loaded by the development server.
303-
304-
Looking for something to work on? Have a look at [the list of known issues](https://github.com/YouCanBookMe/react-datetime/issues), and maybe you can kill a bug making somebody happy! :)
305-
306-
Have some work done? That's great! But please, read the [react-datetime contributing guidelines](.github/CONTRIBUTING.md) before submitting it.
293+
react-datetime is made by the community for the community. People like you, interested in contribute, are the key of the project! 🙌🙌🙌
307294
295+
Have a look at [our contribute page](contribute-home.md) to know how to get started.
308296
309297
### [Changelog](CHANGELOG.md)
310298

config/webpack.config.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const ManifestPlugin = require('webpack-manifest-plugin');
1515
const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
1616
const WorkboxWebpackPlugin = require('workbox-webpack-plugin');
1717
const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
18-
const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');
1918
const getCSSModuleLocalIdent = require('react-dev-utils/getCSSModuleLocalIdent');
2019
const paths = require('./paths');
2120
const modules = require('./modules');
@@ -304,13 +303,7 @@ module.exports = function(webpackEnv) {
304303
plugins: [
305304
// Adds support for installing with Plug'n'Play, leading to faster installs and adding
306305
// guards against forgotten dependencies and such.
307-
PnpWebpackPlugin,
308-
// Prevents users from importing files from outside of src/ (or node_modules/).
309-
// This often causes confusion because we only process files within src/ with babel.
310-
// To fix this, we prevent you from importing files out of src/ -- if you'd like to,
311-
// please link the files into your node_modules/ and let module-resolution kick in.
312-
// Make sure your source files are compiled, as they will not be processed in any way.
313-
// new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]),
306+
PnpWebpackPlugin
314307
],
315308
},
316309
resolveLoader: {

contribute-home.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contribute to react-datetime
2+
3+
Hey!! So good you are interested in collaborate with react-datetime, I'm pretty sure you can make the difference here!
4+
5+
react-datetime is a nice choice if you are looking for some open-source project to lay your hands on. It's a library used by thousands of developers, and the changes in the last version make easier for everyone to understand it. It's not simple, but it's small enough to be get you initiated in a couple of hours.
6+
7+
## Do you want to be part of the future of react-datetime?
8+
We've just released the version 3 of the library and we are already planning the version 4, why don't you join the conversation and help defining the roadmap:
9+
10+
* [Defining version 4 of react-datetime](https://github.com/arqex/react-datetime/issues/723)
11+
12+
## Do you want to play with the source code?
13+
Best way of understand anything is by doing it! This repository includes a playground to let you make changes to the library in minutes. Clone the repo and fire up the playground:
14+
15+
```sh
16+
git clone https://github.com/arqex/react-datetime.git
17+
cd react-datetime
18+
npm install
19+
npm run playground
20+
```
21+
This will start a local development server building `src/index.js`. We can update react-datetime's sources then and our changes will be hot loaded by the development server.
22+
23+
## Looking for something to work on?
24+
Have a look at [the list of known issues](https://github.com/arqex/react-datetime/issues), and maybe you can kill a bug making somebody happy! :)
25+
26+
Have some work done? That's great! But please, read the [react-datetime contributing guidelines](.github/CONTRIBUTING.md) before submitting it.
27+
28+
## Do you want to help without giving code?
29+
If you have integrated react-datetime in your project and you liked it, maybe you can help replying questions from other developers in the [the list of known issues](https://github.com/arqex/react-datetime/issues).
30+
31+
If you have written an article about react-datetime or have a tutorial of how to make it work in any React project, we'll be glad to promote it in our [react-datetime's resources page](resources.md).

css/react-datetime.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* https://github.com/YouCanBookMe/react-datetime
2+
* https://github.com/arqex/react-datetime
33
*/
44

55
.rdt {

dist/react-datetime.cjs.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.

dist/react-datetime.cjs.js.map

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

dist/react-datetime.umd.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.

dist/react-datetime.umd.js.map

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

0 commit comments

Comments
 (0)