ff-stream-web

git clone git://archive.git.mtrnord.blog/MTRNord/ff-stream-web.git
Log | Files | Refs | README | LICENSE

commit e490a5bdc1e48df2c522a1f950a12ca56a8fb862
parent a55d311492b82dc6db19f3100d0a1b0b214d8fb9
Author: Vladimir Kutepov <frenzzy.man@gmail.com>
Date:   Mon,  6 Feb 2017 00:59:35 +0300

Year-agnostic copyright message to prevent the need for yearly changes

Diffstat:
MLICENSE.txt | 2+-
MREADME.md | 2+-
Msrc/client.js | 2+-
Msrc/components/App.js | 2+-
Msrc/components/Feedback/Feedback.css | 2+-
Msrc/components/Feedback/Feedback.js | 2+-
Msrc/components/Footer/Footer.css | 2+-
Msrc/components/Footer/Footer.js | 2+-
Msrc/components/Header/Header.css | 2+-
Msrc/components/Header/Header.js | 2+-
Msrc/components/Html.js | 2+-
Msrc/components/Layout/Layout.css | 2+-
Msrc/components/Layout/Layout.js | 2+-
Msrc/components/Layout/Layout.test.js | 2+-
Msrc/components/Link/Link.js | 2+-
Msrc/components/Navigation/Navigation.css | 2+-
Msrc/components/Navigation/Navigation.js | 2+-
Msrc/components/Page/Page.css | 2+-
Msrc/components/Page/Page.js | 2+-
Msrc/components/variables.css | 2+-
Msrc/config.js | 2+-
Msrc/core/devUtils.js | 2+-
Msrc/core/fetch/fetch.client.js | 2+-
Msrc/core/fetch/fetch.server.js | 2+-
Msrc/core/history.js | 2+-
Msrc/core/passport.js | 2+-
Msrc/data/models/User.js | 2+-
Msrc/data/models/UserClaim.js | 2+-
Msrc/data/models/UserLogin.js | 2+-
Msrc/data/models/UserProfile.js | 9+++++++++
Msrc/data/models/index.js | 2+-
Msrc/data/queries/me.js | 2+-
Msrc/data/queries/news.js | 2+-
Msrc/data/schema.js | 2+-
Msrc/data/sequelize.js | 2+-
Msrc/data/types/NewsItemType.js | 2+-
Msrc/data/types/UserType.js | 2+-
Msrc/routes/about/index.js | 2+-
Msrc/routes/admin/Admin.css | 2+-
Msrc/routes/admin/Admin.js | 2+-
Msrc/routes/admin/index.js | 2+-
Msrc/routes/contact/Contact.css | 2+-
Msrc/routes/contact/Contact.js | 2+-
Msrc/routes/contact/index.js | 2+-
Msrc/routes/error/ErrorPage.css | 2+-
Msrc/routes/error/ErrorPage.js | 2+-
Msrc/routes/error/index.js | 2+-
Msrc/routes/home/Home.css | 2+-
Msrc/routes/home/Home.js | 2+-
Msrc/routes/home/index.js | 2+-
Msrc/routes/index.js | 2+-
Msrc/routes/login/Login.css | 2+-
Msrc/routes/login/Login.js | 2+-
Msrc/routes/login/index.js | 2+-
Msrc/routes/notFound/NotFound.css | 2+-
Msrc/routes/notFound/NotFound.js | 2+-
Msrc/routes/notFound/index.js | 2+-
Msrc/routes/privacy/index.js | 2+-
Msrc/routes/register/Register.css | 2+-
Msrc/routes/register/Register.js | 2+-
Msrc/routes/register/index.js | 2+-
Msrc/server.js | 2+-
Mtest/setup.js | 2+-
Mtools/build.js | 2+-
Mtools/bundle.js | 2+-
Mtools/clean.js | 2+-
Mtools/copy.js | 2+-
Mtools/deployToAzureWebApps.js | 2+-
Mtools/deployToGitHubPages.js | 2+-
Mtools/lib/fs.js | 2+-
Mtools/lib/markdown-loader.js | 2+-
Mtools/postcss.config.js | 2+-
Mtools/render.js | 2+-
Mtools/run.js | 2+-
Mtools/runServer.js | 2+-
Mtools/start.js | 2+-
Mtools/webpack.config.js | 2+-
77 files changed, 85 insertions(+), 76 deletions(-)

diff --git a/LICENSE.txt b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License -Copyright (c) 2014-2016 Konstantin Tarkus, KriaSoft LLC. +Copyright (c) 2014-present Konstantin Tarkus, KriaSoft LLC. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md @@ -217,7 +217,7 @@ requests](CONTRIBUTING.md#pull-requests). ### License -Copyright © 2014-2016 Kriasoft, LLC. This source code is licensed under the MIT +Copyright © 2014-present Kriasoft, LLC. This source code is licensed under the MIT license found in the [LICENSE.txt](https://github.com/kriasoft/react-starter-kit/blob/master/LICENSE.txt) file. The documentation to the project is licensed under the [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) license. diff --git a/src/client.js b/src/client.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/App.js b/src/components/App.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Feedback/Feedback.css b/src/components/Feedback/Feedback.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Feedback/Feedback.js b/src/components/Feedback/Feedback.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Footer/Footer.css b/src/components/Footer/Footer.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Header/Header.css b/src/components/Header/Header.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Header/Header.js b/src/components/Header/Header.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Html.js b/src/components/Html.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Layout/Layout.css b/src/components/Layout/Layout.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Layout/Layout.js b/src/components/Layout/Layout.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Layout/Layout.test.js b/src/components/Layout/Layout.test.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Link/Link.js b/src/components/Link/Link.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Navigation/Navigation.css b/src/components/Navigation/Navigation.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Navigation/Navigation.js b/src/components/Navigation/Navigation.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Page/Page.css b/src/components/Page/Page.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/Page/Page.js b/src/components/Page/Page.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/components/variables.css b/src/components/variables.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/config.js b/src/config.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/core/devUtils.js b/src/core/devUtils.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/core/fetch/fetch.client.js b/src/core/fetch/fetch.client.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/core/fetch/fetch.server.js b/src/core/fetch/fetch.server.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/core/history.js b/src/core/history.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/core/passport.js b/src/core/passport.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/models/User.js b/src/data/models/User.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/models/UserClaim.js b/src/data/models/UserClaim.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/models/UserLogin.js b/src/data/models/UserLogin.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/models/UserProfile.js b/src/data/models/UserProfile.js @@ -1,3 +1,12 @@ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. + * + * This source code is licensed under the MIT license found in the + * LICENSE.txt file in the root directory of this source tree. + */ + import DataType from 'sequelize'; import Model from '../sequelize'; diff --git a/src/data/models/index.js b/src/data/models/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/queries/me.js b/src/data/queries/me.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/queries/news.js b/src/data/queries/news.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/schema.js b/src/data/schema.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/sequelize.js b/src/data/sequelize.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/types/NewsItemType.js b/src/data/types/NewsItemType.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/data/types/UserType.js b/src/data/types/UserType.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/about/index.js b/src/routes/about/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/admin/Admin.css b/src/routes/admin/Admin.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/admin/Admin.js b/src/routes/admin/Admin.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/admin/index.js b/src/routes/admin/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/contact/Contact.css b/src/routes/contact/Contact.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/contact/Contact.js b/src/routes/contact/Contact.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/contact/index.js b/src/routes/contact/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/error/ErrorPage.css b/src/routes/error/ErrorPage.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/error/ErrorPage.js b/src/routes/error/ErrorPage.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/error/index.js b/src/routes/error/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/home/Home.css b/src/routes/home/Home.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/home/Home.js b/src/routes/home/Home.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/home/index.js b/src/routes/home/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/index.js b/src/routes/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/login/Login.css b/src/routes/login/Login.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/login/Login.js b/src/routes/login/Login.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/login/index.js b/src/routes/login/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/notFound/NotFound.css b/src/routes/notFound/NotFound.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/notFound/NotFound.js b/src/routes/notFound/NotFound.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/notFound/index.js b/src/routes/notFound/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/privacy/index.js b/src/routes/privacy/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/register/Register.css b/src/routes/register/Register.css @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/register/Register.js b/src/routes/register/Register.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/routes/register/index.js b/src/routes/register/index.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/src/server.js b/src/server.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/test/setup.js b/test/setup.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/build.js b/tools/build.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/bundle.js b/tools/bundle.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/clean.js b/tools/clean.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/copy.js b/tools/copy.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/deployToAzureWebApps.js b/tools/deployToAzureWebApps.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/deployToGitHubPages.js b/tools/deployToGitHubPages.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/lib/fs.js b/tools/lib/fs.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/lib/markdown-loader.js b/tools/lib/markdown-loader.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/postcss.config.js b/tools/postcss.config.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/render.js b/tools/render.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/run.js b/tools/run.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/runServer.js b/tools/runServer.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/start.js b/tools/start.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. diff --git a/tools/webpack.config.js b/tools/webpack.config.js @@ -1,7 +1,7 @@ /** * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2016 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-present Kriasoft, LLC. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree.