ff-stream-web

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

commit dcddf6785641bbd1b411592f4694f1f7c9c0ece9
parent de4d6825012f7174d63923b482c197d282f52a30
Author: Konstantin Tarkus <hello@tarkus.me>
Date:   Sat, 19 Dec 2015 23:26:55 +0300

Update copyright header comment in source files

Diffstat:
MREADME.md | 2+-
Mpreprocessor.js | 4++--
Msrc/api/content.js | 9++++++++-
Msrc/client.js | 9++++++++-
Msrc/components/App/App.js | 9++++++++-
Msrc/components/App/App.scss | 11++++++++++-
Msrc/components/ContactPage/ContactPage.js | 9++++++++-
Msrc/components/ContactPage/ContactPage.scss | 9++++++++-
Msrc/components/ContentPage/ContentPage.js | 9++++++++-
Msrc/components/ContentPage/ContentPage.scss | 9++++++++-
Msrc/components/ErrorPage/ErrorPage.js | 9++++++++-
Msrc/components/ErrorPage/ErrorPage.scss | 9++++++++-
Msrc/components/Feedback/Feedback.js | 9++++++++-
Msrc/components/Feedback/Feedback.scss | 9++++++++-
Msrc/components/Footer/Footer.js | 9++++++++-
Msrc/components/Footer/Footer.scss | 9++++++++-
Msrc/components/Header/Header.js | 9++++++++-
Msrc/components/Header/Header.scss | 9++++++++-
Msrc/components/Html/Html.js | 9++++++++-
Msrc/components/Link/Link.js | 9++++++++-
Msrc/components/LoginPage/LoginPage.js | 9++++++++-
Msrc/components/LoginPage/LoginPage.scss | 9++++++++-
Msrc/components/Navigation/Navigation.js | 9++++++++-
Msrc/components/Navigation/Navigation.scss | 9++++++++-
Msrc/components/NotFoundPage/NotFoundPage.js | 9++++++++-
Msrc/components/NotFoundPage/NotFoundPage.scss | 9++++++++-
Msrc/components/RegisterPage/RegisterPage.js | 9++++++++-
Msrc/components/RegisterPage/RegisterPage.scss | 9++++++++-
Msrc/components/TextBox/TextBox.js | 9++++++++-
Msrc/components/TextBox/TextBox.scss | 9++++++++-
Msrc/components/variables.scss | 2--
Msrc/config.js | 9++++++++-
Msrc/constants/ActionTypes.js | 9++++++++-
Msrc/core/DOMUtils.js | 9++++++++-
Msrc/core/Dispatcher.js | 9++++++++-
Msrc/core/Location.js | 9++++++++-
Msrc/core/fetch/fetch.client.js | 9++++++++-
Msrc/core/fetch/fetch.server.js | 9++++++++-
Msrc/decorators/withStyles.js | 9++++++++-
Msrc/decorators/withViewport.js | 9++++++++-
Msrc/routes.js | 9++++++++-
Msrc/server.js | 9++++++++-
Mtools/build.js | 4++--
Mtools/bundle.js | 4++--
Mtools/clean.js | 4++--
Mtools/copy.js | 4++--
Mtools/deploy.js | 4++--
Mtools/lib/fetch.js | 4++--
Mtools/lib/fs.js | 4++--
Mtools/run.js | 4++--
Mtools/runServer.js | 4++--
Mtools/start.js | 4++--
Mtools/webpack.config.js | 4++--
53 files changed, 339 insertions(+), 66 deletions(-)

diff --git a/README.md b/README.md @@ -2,7 +2,7 @@ [![Support us on Bountysource](https://dl.dropboxusercontent.com/u/16006521/react-starter-kit/banner.png)](https://salt.bountysource.com/teams/react-starter-kit)<br> -> [React Starter Kit](http://www.reactstarterkit.com) is an opinionated +> [React Starter Kit](https://www.reactstarterkit.com) is an opinionated > boilerplate for web development built on top of Facebook's > [React](https://facebook.github.io/react/) library, > [Node.js](https://nodejs.org/) / [Express](http://expressjs.com/) server diff --git a/preprocessor.js b/preprocessor.js @@ -1,7 +1,7 @@ /** - * React Starter Kit (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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/api/content.js b/src/api/content.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 fs from 'fs'; import { join } from 'path'; diff --git a/src/client.js b/src/client.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 'babel-core/polyfill'; import ReactDOM from 'react-dom'; diff --git a/src/components/App/App.js b/src/components/App/App.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import emptyFunction from 'fbjs/lib/emptyFunction'; diff --git a/src/components/App/App.scss b/src/components/App/App.scss @@ -1,6 +1,15 @@ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../../../node_modules/normalize.css/normalize.css'; -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/*! React Starter Kit | MIT License | https://www.reactstarterkit.com/ */ @import '../variables.scss'; diff --git a/src/components/ContactPage/ContactPage.js b/src/components/ContactPage/ContactPage.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './ContactPage.scss'; diff --git a/src/components/ContactPage/ContactPage.scss b/src/components/ContactPage/ContactPage.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/ContentPage/ContentPage.js b/src/components/ContentPage/ContentPage.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './ContentPage.scss'; diff --git a/src/components/ContentPage/ContentPage.scss b/src/components/ContentPage/ContentPage.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/ErrorPage/ErrorPage.js b/src/components/ErrorPage/ErrorPage.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './ErrorPage.scss'; diff --git a/src/components/ErrorPage/ErrorPage.scss b/src/components/ErrorPage/ErrorPage.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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. + */ * { margin: 0; diff --git a/src/components/Feedback/Feedback.js b/src/components/Feedback/Feedback.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component } from 'react'; import s from './Feedback.scss'; diff --git a/src/components/Feedback/Feedback.scss b/src/components/Feedback/Feedback.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component } from 'react'; import s from './Footer.scss'; diff --git a/src/components/Footer/Footer.scss b/src/components/Footer/Footer.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/Header/Header.js b/src/components/Header/Header.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component } from 'react'; import s from './Header.scss'; diff --git a/src/components/Header/Header.scss b/src/components/Header/Header.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/Html/Html.js b/src/components/Html/Html.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import { googleAnalyticsId } from '../../config'; diff --git a/src/components/Link/Link.js b/src/components/Link/Link.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import parsePath from 'history/lib/parsePath'; diff --git a/src/components/LoginPage/LoginPage.js b/src/components/LoginPage/LoginPage.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './LoginPage.scss'; diff --git a/src/components/LoginPage/LoginPage.scss b/src/components/LoginPage/LoginPage.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/Navigation/Navigation.js b/src/components/Navigation/Navigation.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import cx from 'classnames'; diff --git a/src/components/Navigation/Navigation.scss b/src/components/Navigation/Navigation.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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. + */ .root { diff --git a/src/components/NotFoundPage/NotFoundPage.js b/src/components/NotFoundPage/NotFoundPage.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './NotFoundPage.scss'; diff --git a/src/components/NotFoundPage/NotFoundPage.scss b/src/components/NotFoundPage/NotFoundPage.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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. + */ * { margin: 0; diff --git a/src/components/RegisterPage/RegisterPage.js b/src/components/RegisterPage/RegisterPage.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './RegisterPage.scss'; diff --git a/src/components/RegisterPage/RegisterPage.scss b/src/components/RegisterPage/RegisterPage.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 '../variables.scss'; diff --git a/src/components/TextBox/TextBox.js b/src/components/TextBox/TextBox.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; import s from './TextBox.scss'; diff --git a/src/components/TextBox/TextBox.scss b/src/components/TextBox/TextBox.scss @@ -1,4 +1,11 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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. + */ .root { } .input { } diff --git a/src/components/variables.scss b/src/components/variables.scss @@ -1,5 +1,3 @@ -/* React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ - /* * Colors * ========================================================================== */ diff --git a/src/config.js b/src/config.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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. + */ export const port = process.env.PORT || 5000; export const host = process.env.WEBSITE_HOSTNAME || `localhost:${port}`; diff --git a/src/constants/ActionTypes.js b/src/constants/ActionTypes.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 keyMirror from 'fbjs/lib/keyMirror'; diff --git a/src/core/DOMUtils.js b/src/core/DOMUtils.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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. + */ export function addEventListener(node, event, listener) { if (node.addEventListener) { diff --git a/src/core/Dispatcher.js b/src/core/Dispatcher.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 { Dispatcher } from 'flux'; diff --git a/src/core/Location.js b/src/core/Location.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 { canUseDOM } from 'fbjs/lib/ExecutionEnvironment'; import createHistory from 'history/lib/createBrowserHistory'; diff --git a/src/core/fetch/fetch.client.js b/src/core/fetch/fetch.client.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 'whatwg-fetch'; diff --git a/src/core/fetch/fetch.server.js b/src/core/fetch/fetch.server.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 fetch, { Request, Headers, Response } from 'node-fetch'; import { host } from '../../config'; diff --git a/src/decorators/withStyles.js b/src/decorators/withStyles.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component, PropTypes } from 'react'; diff --git a/src/decorators/withViewport.js b/src/decorators/withViewport.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React, { Component } from 'react'; // eslint-disable-line no-unused-vars import EventEmitter from 'eventemitter3'; diff --git a/src/routes.js b/src/routes.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 React from 'react'; import Router from 'react-routing/src/Router'; diff --git a/src/server.js b/src/server.js @@ -1,4 +1,11 @@ -/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ +/** + * React Starter Kit (https://www.reactstarterkit.com/) + * + * Copyright © 2014-2016 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 'babel-core/polyfill'; import path from 'path'; diff --git a/tools/build.js b/tools/build.js @@ -1,7 +1,7 @@ /** - * React Starter Kit (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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/deploy.js b/tools/deploy.js @@ -1,7 +1,7 @@ /** - * React Starter Kit (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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/fetch.js b/tools/lib/fetch.js @@ -1,7 +1,7 @@ /** - * React Starter Kit (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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 (http://www.reactstarterkit.com/) + * React Starter Kit (https://www.reactstarterkit.com/) * - * Copyright © 2014-2015 Kriasoft, LLC. All rights reserved. + * Copyright © 2014-2016 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.