Skip to content
This repository was archived by the owner on May 17, 2019. It is now read-only.

Commit 017b27f

Browse files
authored
Add short MIT license header to all source files (#41)
1 parent f86e052 commit 017b27f

File tree

6 files changed

+36
-0
lines changed

6 files changed

+36
-0
lines changed

src/__tests__/index.browser.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/** Copyright (c) 2018 Uber Technologies, Inc.
2+
*
3+
* This source code is licensed under the MIT license found in the
4+
* LICENSE file in the root directory of this source tree.
5+
*/
6+
17
/* eslint-env browser */
28
import test from 'tape-cup';
39
import Plugin from '../plugin';

src/__tests__/index.node.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/** Copyright (c) 2018 Uber Technologies, Inc.
2+
*
3+
* This source code is licensed under the MIT license found in the
4+
* LICENSE file in the root directory of this source tree.
5+
*/
6+
17
import React from 'react';
28
import test from 'tape-cup';
39
import Plugin from '../plugin';

src/__tests__/interface.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/** Copyright (c) 2018 Uber Technologies, Inc.
2+
*
3+
* This source code is licensed under the MIT license found in the
4+
* LICENSE file in the root directory of this source tree.
5+
*/
6+
17
import tape from 'tape-cup';
28
import Plugin, {
39
createRPCReducer,

src/hoc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/** Copyright (c) 2018 Uber Technologies, Inc.
2+
*
3+
* This source code is licensed under the MIT license found in the
4+
* LICENSE file in the root directory of this source tree.
5+
*/
6+
17
import PropTypes from 'prop-types';
28
import React from 'react';
39
import {createRPCHandler, createRPCReactors} from 'fusion-rpc-redux';

src/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/** Copyright (c) 2018 Uber Technologies, Inc.
2+
*
3+
* This source code is licensed under the MIT license found in the
4+
* LICENSE file in the root directory of this source tree.
5+
*/
6+
17
import plugin from './plugin';
28
import {ProviderPlugin} from 'fusion-react';
39
export {createRPCReducer} from 'fusion-rpc-redux';

src/plugin.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/** Copyright (c) 2018 Uber Technologies, Inc.
2+
*
3+
* This source code is licensed under the MIT license found in the
4+
* LICENSE file in the root directory of this source tree.
5+
*/
6+
17
import {ProviderPlugin} from 'fusion-react';
28
import rpc from 'fusion-plugin-rpc';
39

0 commit comments

Comments
 (0)