From ffd0831c57b7abca5955824859d824f2138efea7 Mon Sep 17 00:00:00 2001 From: Sophie Alpert Date: Tue, 26 Sep 2017 02:30:05 -0700 Subject: [PATCH] BSD+Patents -> MIT (#3189) * File headers BSD+Patents -> MIT * BSD+Patents -> MIT --- bin/react-scripts.js | 6 ++---- config/env.js | 6 ++---- config/jest/babelTransform.js | 7 +++---- config/jest/cssTransform.js | 7 +++---- config/jest/fileTransform.js | 7 +++---- config/paths.js | 6 ++---- config/polyfills.js | 6 ++---- config/webpack.config.dev.js | 6 ++---- config/webpack.config.prod.js | 6 ++---- config/webpackDevServer.config.js | 6 ++---- fixtures/kitchensink/integration/env.test.js | 6 ++---- fixtures/kitchensink/integration/initDOM.js | 6 ++---- fixtures/kitchensink/integration/syntax.test.js | 6 ++---- fixtures/kitchensink/integration/webpack.test.js | 6 ++---- fixtures/kitchensink/src/App.js | 6 ++---- fixtures/kitchensink/src/absoluteLoad.js | 6 ++---- fixtures/kitchensink/src/features/env/FileEnvVariables.js | 6 ++---- .../kitchensink/src/features/env/FileEnvVariables.test.js | 6 ++---- fixtures/kitchensink/src/features/env/NodePath.js | 6 ++---- fixtures/kitchensink/src/features/env/NodePath.test.js | 6 ++---- fixtures/kitchensink/src/features/env/PublicUrl.js | 6 ++---- fixtures/kitchensink/src/features/env/PublicUrl.test.js | 6 ++---- fixtures/kitchensink/src/features/env/ShellEnvVariables.js | 6 ++---- .../kitchensink/src/features/env/ShellEnvVariables.test.js | 6 ++---- .../kitchensink/src/features/syntax/ArrayDestructuring.js | 6 ++---- .../src/features/syntax/ArrayDestructuring.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/ArraySpread.js | 6 ++---- .../kitchensink/src/features/syntax/ArraySpread.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/AsyncAwait.js | 6 ++---- .../kitchensink/src/features/syntax/AsyncAwait.test.js | 6 ++---- .../kitchensink/src/features/syntax/ClassProperties.js | 6 ++---- .../src/features/syntax/ClassProperties.test.js | 6 ++---- .../kitchensink/src/features/syntax/ComputedProperties.js | 6 ++---- .../src/features/syntax/ComputedProperties.test.js | 6 ++---- .../kitchensink/src/features/syntax/CustomInterpolation.js | 6 ++---- .../src/features/syntax/CustomInterpolation.test.js | 6 ++---- .../kitchensink/src/features/syntax/DefaultParameters.js | 6 ++---- .../src/features/syntax/DefaultParameters.test.js | 6 ++---- .../src/features/syntax/DestructuringAndAwait.js | 6 ++---- .../src/features/syntax/DestructuringAndAwait.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/Generators.js | 6 ++---- .../kitchensink/src/features/syntax/Generators.test.js | 6 ++---- .../kitchensink/src/features/syntax/ObjectDestructuring.js | 6 ++---- .../src/features/syntax/ObjectDestructuring.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/ObjectSpread.js | 6 ++---- .../kitchensink/src/features/syntax/ObjectSpread.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/Promises.js | 6 ++---- fixtures/kitchensink/src/features/syntax/Promises.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/RestAndDefault.js | 6 ++---- .../kitchensink/src/features/syntax/RestAndDefault.test.js | 6 ++---- fixtures/kitchensink/src/features/syntax/RestParameters.js | 6 ++---- .../kitchensink/src/features/syntax/RestParameters.test.js | 6 ++---- .../src/features/syntax/TemplateInterpolation.js | 6 ++---- .../src/features/syntax/TemplateInterpolation.test.js | 6 ++---- fixtures/kitchensink/src/features/webpack/CssInclusion.js | 6 ++---- .../kitchensink/src/features/webpack/CssInclusion.test.js | 6 ++---- .../kitchensink/src/features/webpack/ImageInclusion.js | 6 ++---- .../src/features/webpack/ImageInclusion.test.js | 6 ++---- fixtures/kitchensink/src/features/webpack/JsonInclusion.js | 6 ++---- .../kitchensink/src/features/webpack/JsonInclusion.test.js | 6 ++---- fixtures/kitchensink/src/features/webpack/LinkedModules.js | 6 ++---- .../kitchensink/src/features/webpack/LinkedModules.test.js | 6 ++---- .../kitchensink/src/features/webpack/NoExtInclusion.js | 6 ++---- .../src/features/webpack/NoExtInclusion.test.js | 6 ++---- fixtures/kitchensink/src/features/webpack/SvgInclusion.js | 6 ++---- .../kitchensink/src/features/webpack/SvgInclusion.test.js | 6 ++---- .../src/features/webpack/UnknownExtInclusion.js | 6 ++---- .../src/features/webpack/UnknownExtInclusion.test.js | 6 ++---- fixtures/kitchensink/src/index.js | 6 ++---- fixtures/kitchensink/src/subfolder/lol.js | 6 ++---- package.json | 2 +- scripts/build.js | 6 ++---- scripts/eject.js | 6 ++---- scripts/init.js | 6 ++---- scripts/start.js | 6 ++---- scripts/test.js | 6 ++---- scripts/utils/createJestConfig.js | 6 ++---- 77 files changed, 156 insertions(+), 305 deletions(-) diff --git a/bin/react-scripts.js b/bin/react-scripts.js index a8f37e813ed..9de034ff0d9 100755 --- a/bin/react-scripts.js +++ b/bin/react-scripts.js @@ -1,11 +1,9 @@ #!/usr/bin/env node /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ 'use strict'; diff --git a/config/env.js b/config/env.js index ebef79ed9e0..fa42747f6a8 100644 --- a/config/env.js +++ b/config/env.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/jest/babelTransform.js b/config/jest/babelTransform.js index bee55b1b156..02742e90c6c 100644 --- a/config/jest/babelTransform.js +++ b/config/jest/babelTransform.js @@ -1,10 +1,9 @@ // @remove-file-on-eject /** - * Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + * Copyright (c) 2014-present, Facebook, Inc. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ 'use strict'; diff --git a/config/jest/cssTransform.js b/config/jest/cssTransform.js index 0a9849f1f54..99a8cb26982 100644 --- a/config/jest/cssTransform.js +++ b/config/jest/cssTransform.js @@ -1,10 +1,9 @@ // @remove-on-eject-begin /** - * Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + * Copyright (c) 2014-present, Facebook, Inc. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/jest/fileTransform.js b/config/jest/fileTransform.js index 89027bdc702..8f9b843abd6 100644 --- a/config/jest/fileTransform.js +++ b/config/jest/fileTransform.js @@ -1,10 +1,9 @@ // @remove-on-eject-begin /** - * Copyright (c) 2014-present, Facebook, Inc. All rights reserved. + * Copyright (c) 2014-present, Facebook, Inc. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/paths.js b/config/paths.js index 94e399f0f4e..718b898bb8d 100644 --- a/config/paths.js +++ b/config/paths.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/polyfills.js b/config/polyfills.js index 14031a1688d..673fb8399b4 100644 --- a/config/polyfills.js +++ b/config/polyfills.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index 6417578f4a9..44669e6059f 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js index 81121a94929..ef4ea1bc076 100644 --- a/config/webpack.config.prod.js +++ b/config/webpack.config.prod.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/config/webpackDevServer.config.js b/config/webpackDevServer.config.js index 9c3889abae8..25b42d0de8b 100644 --- a/config/webpackDevServer.config.js +++ b/config/webpackDevServer.config.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/fixtures/kitchensink/integration/env.test.js b/fixtures/kitchensink/integration/env.test.js index a7d4ff2a2d7..5138bc513b3 100644 --- a/fixtures/kitchensink/integration/env.test.js +++ b/fixtures/kitchensink/integration/env.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import { expect } from 'chai'; diff --git a/fixtures/kitchensink/integration/initDOM.js b/fixtures/kitchensink/integration/initDOM.js index b865b5641a3..3d0eb7a1c9c 100644 --- a/fixtures/kitchensink/integration/initDOM.js +++ b/fixtures/kitchensink/integration/initDOM.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ const fs = require('fs'); diff --git a/fixtures/kitchensink/integration/syntax.test.js b/fixtures/kitchensink/integration/syntax.test.js index fc2a717befe..82e2c9e0db2 100644 --- a/fixtures/kitchensink/integration/syntax.test.js +++ b/fixtures/kitchensink/integration/syntax.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import { expect } from 'chai'; diff --git a/fixtures/kitchensink/integration/webpack.test.js b/fixtures/kitchensink/integration/webpack.test.js index e3845e79e42..1fe5c9f64cd 100644 --- a/fixtures/kitchensink/integration/webpack.test.js +++ b/fixtures/kitchensink/integration/webpack.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import { expect } from 'chai'; diff --git a/fixtures/kitchensink/src/App.js b/fixtures/kitchensink/src/App.js index cb342b06247..5fe13accf25 100644 --- a/fixtures/kitchensink/src/App.js +++ b/fixtures/kitchensink/src/App.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component, createElement } from 'react'; diff --git a/fixtures/kitchensink/src/absoluteLoad.js b/fixtures/kitchensink/src/absoluteLoad.js index 0d01bc0a227..5c4f7842e28 100644 --- a/fixtures/kitchensink/src/absoluteLoad.js +++ b/fixtures/kitchensink/src/absoluteLoad.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ export default () => [ diff --git a/fixtures/kitchensink/src/features/env/FileEnvVariables.js b/fixtures/kitchensink/src/features/env/FileEnvVariables.js index 41c472e032c..c601d2efd3c 100644 --- a/fixtures/kitchensink/src/features/env/FileEnvVariables.js +++ b/fixtures/kitchensink/src/features/env/FileEnvVariables.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/env/FileEnvVariables.test.js b/fixtures/kitchensink/src/features/env/FileEnvVariables.test.js index 5a0fed4c649..8c628d2154a 100644 --- a/fixtures/kitchensink/src/features/env/FileEnvVariables.test.js +++ b/fixtures/kitchensink/src/features/env/FileEnvVariables.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/env/NodePath.js b/fixtures/kitchensink/src/features/env/NodePath.js index a039cefedf3..f14c5d24f14 100644 --- a/fixtures/kitchensink/src/features/env/NodePath.js +++ b/fixtures/kitchensink/src/features/env/NodePath.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/env/NodePath.test.js b/fixtures/kitchensink/src/features/env/NodePath.test.js index 7e076dade75..1de025d2f2f 100644 --- a/fixtures/kitchensink/src/features/env/NodePath.test.js +++ b/fixtures/kitchensink/src/features/env/NodePath.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/env/PublicUrl.js b/fixtures/kitchensink/src/features/env/PublicUrl.js index 4ea9b96f8b2..f3df96a3564 100644 --- a/fixtures/kitchensink/src/features/env/PublicUrl.js +++ b/fixtures/kitchensink/src/features/env/PublicUrl.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/env/PublicUrl.test.js b/fixtures/kitchensink/src/features/env/PublicUrl.test.js index c9e1be0e94a..bda2e051fb3 100644 --- a/fixtures/kitchensink/src/features/env/PublicUrl.test.js +++ b/fixtures/kitchensink/src/features/env/PublicUrl.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/env/ShellEnvVariables.js b/fixtures/kitchensink/src/features/env/ShellEnvVariables.js index 8449097d69a..2543779ac1f 100644 --- a/fixtures/kitchensink/src/features/env/ShellEnvVariables.js +++ b/fixtures/kitchensink/src/features/env/ShellEnvVariables.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/env/ShellEnvVariables.test.js b/fixtures/kitchensink/src/features/env/ShellEnvVariables.test.js index 13707697591..c1f5001cd86 100644 --- a/fixtures/kitchensink/src/features/env/ShellEnvVariables.test.js +++ b/fixtures/kitchensink/src/features/env/ShellEnvVariables.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.js b/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.js index be6c39f9007..be605a01c93 100644 --- a/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.js +++ b/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.test.js b/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.test.js index 42dde0f1c35..e6ab4c9f21e 100644 --- a/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.test.js +++ b/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ArraySpread.js b/fixtures/kitchensink/src/features/syntax/ArraySpread.js index eb7886aa47b..be696ffa215 100644 --- a/fixtures/kitchensink/src/features/syntax/ArraySpread.js +++ b/fixtures/kitchensink/src/features/syntax/ArraySpread.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ArraySpread.test.js b/fixtures/kitchensink/src/features/syntax/ArraySpread.test.js index 9ed7633ea35..4827bc222f0 100644 --- a/fixtures/kitchensink/src/features/syntax/ArraySpread.test.js +++ b/fixtures/kitchensink/src/features/syntax/ArraySpread.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/AsyncAwait.js b/fixtures/kitchensink/src/features/syntax/AsyncAwait.js index a60633460b3..ae135133b01 100644 --- a/fixtures/kitchensink/src/features/syntax/AsyncAwait.js +++ b/fixtures/kitchensink/src/features/syntax/AsyncAwait.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/AsyncAwait.test.js b/fixtures/kitchensink/src/features/syntax/AsyncAwait.test.js index 02713981799..b056cb70570 100644 --- a/fixtures/kitchensink/src/features/syntax/AsyncAwait.test.js +++ b/fixtures/kitchensink/src/features/syntax/AsyncAwait.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ClassProperties.js b/fixtures/kitchensink/src/features/syntax/ClassProperties.js index ed96d4f8c9e..b1a063cf0c4 100644 --- a/fixtures/kitchensink/src/features/syntax/ClassProperties.js +++ b/fixtures/kitchensink/src/features/syntax/ClassProperties.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ClassProperties.test.js b/fixtures/kitchensink/src/features/syntax/ClassProperties.test.js index 5b038e76d90..3ba3074a35b 100644 --- a/fixtures/kitchensink/src/features/syntax/ClassProperties.test.js +++ b/fixtures/kitchensink/src/features/syntax/ClassProperties.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ComputedProperties.js b/fixtures/kitchensink/src/features/syntax/ComputedProperties.js index 38dc797a8d5..ad27b8bb23c 100644 --- a/fixtures/kitchensink/src/features/syntax/ComputedProperties.js +++ b/fixtures/kitchensink/src/features/syntax/ComputedProperties.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ComputedProperties.test.js b/fixtures/kitchensink/src/features/syntax/ComputedProperties.test.js index 91b697fe0a0..0442a6bc141 100644 --- a/fixtures/kitchensink/src/features/syntax/ComputedProperties.test.js +++ b/fixtures/kitchensink/src/features/syntax/ComputedProperties.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/CustomInterpolation.js b/fixtures/kitchensink/src/features/syntax/CustomInterpolation.js index a6c9b69de5e..9d894de1336 100644 --- a/fixtures/kitchensink/src/features/syntax/CustomInterpolation.js +++ b/fixtures/kitchensink/src/features/syntax/CustomInterpolation.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/CustomInterpolation.test.js b/fixtures/kitchensink/src/features/syntax/CustomInterpolation.test.js index ac468db76a8..854f3cebd2f 100644 --- a/fixtures/kitchensink/src/features/syntax/CustomInterpolation.test.js +++ b/fixtures/kitchensink/src/features/syntax/CustomInterpolation.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/DefaultParameters.js b/fixtures/kitchensink/src/features/syntax/DefaultParameters.js index 0a519eba839..d86a989cc40 100644 --- a/fixtures/kitchensink/src/features/syntax/DefaultParameters.js +++ b/fixtures/kitchensink/src/features/syntax/DefaultParameters.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/DefaultParameters.test.js b/fixtures/kitchensink/src/features/syntax/DefaultParameters.test.js index 26d5184eb11..71c255200a5 100644 --- a/fixtures/kitchensink/src/features/syntax/DefaultParameters.test.js +++ b/fixtures/kitchensink/src/features/syntax/DefaultParameters.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.js b/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.js index d44f4cf222c..a69167d44a4 100644 --- a/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.js +++ b/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.test.js b/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.test.js index c7d74d8012b..ec9a9a9e1a9 100644 --- a/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.test.js +++ b/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/Generators.js b/fixtures/kitchensink/src/features/syntax/Generators.js index 2fe473d1339..7ad8fc8faba 100644 --- a/fixtures/kitchensink/src/features/syntax/Generators.js +++ b/fixtures/kitchensink/src/features/syntax/Generators.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/Generators.test.js b/fixtures/kitchensink/src/features/syntax/Generators.test.js index 3bbe2d4f703..5b59d666404 100644 --- a/fixtures/kitchensink/src/features/syntax/Generators.test.js +++ b/fixtures/kitchensink/src/features/syntax/Generators.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.js b/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.js index 2994d14af4d..be519175f69 100644 --- a/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.js +++ b/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.test.js b/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.test.js index 503b2cb11b6..ea2b4bdc7ae 100644 --- a/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.test.js +++ b/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ObjectSpread.js b/fixtures/kitchensink/src/features/syntax/ObjectSpread.js index 7349be2f9e4..3c62e38c988 100644 --- a/fixtures/kitchensink/src/features/syntax/ObjectSpread.js +++ b/fixtures/kitchensink/src/features/syntax/ObjectSpread.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/ObjectSpread.test.js b/fixtures/kitchensink/src/features/syntax/ObjectSpread.test.js index 09a92ce05a2..0f2aefd4e91 100644 --- a/fixtures/kitchensink/src/features/syntax/ObjectSpread.test.js +++ b/fixtures/kitchensink/src/features/syntax/ObjectSpread.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/Promises.js b/fixtures/kitchensink/src/features/syntax/Promises.js index e626de5d818..f7fd34f0a5e 100644 --- a/fixtures/kitchensink/src/features/syntax/Promises.js +++ b/fixtures/kitchensink/src/features/syntax/Promises.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/Promises.test.js b/fixtures/kitchensink/src/features/syntax/Promises.test.js index 88ba04fe3b9..ee2ce709fb9 100644 --- a/fixtures/kitchensink/src/features/syntax/Promises.test.js +++ b/fixtures/kitchensink/src/features/syntax/Promises.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/RestAndDefault.js b/fixtures/kitchensink/src/features/syntax/RestAndDefault.js index dc2a1563a41..3f22cc816cb 100644 --- a/fixtures/kitchensink/src/features/syntax/RestAndDefault.js +++ b/fixtures/kitchensink/src/features/syntax/RestAndDefault.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/RestAndDefault.test.js b/fixtures/kitchensink/src/features/syntax/RestAndDefault.test.js index e48b7dc59b9..36fc91d4c20 100644 --- a/fixtures/kitchensink/src/features/syntax/RestAndDefault.test.js +++ b/fixtures/kitchensink/src/features/syntax/RestAndDefault.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/RestParameters.js b/fixtures/kitchensink/src/features/syntax/RestParameters.js index e703a33cc86..8e8c0b8b2de 100644 --- a/fixtures/kitchensink/src/features/syntax/RestParameters.js +++ b/fixtures/kitchensink/src/features/syntax/RestParameters.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/RestParameters.test.js b/fixtures/kitchensink/src/features/syntax/RestParameters.test.js index c1eb90e0dbd..9be970124a4 100644 --- a/fixtures/kitchensink/src/features/syntax/RestParameters.test.js +++ b/fixtures/kitchensink/src/features/syntax/RestParameters.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.js b/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.js index 5aba5da6272..9788ee5dc28 100644 --- a/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.js +++ b/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React, { Component } from 'react'; diff --git a/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.test.js b/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.test.js index ff32baaedd0..10082088de1 100644 --- a/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.test.js +++ b/fixtures/kitchensink/src/features/syntax/TemplateInterpolation.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/CssInclusion.js b/fixtures/kitchensink/src/features/webpack/CssInclusion.js index ab7c9a2d86e..868a886a29d 100644 --- a/fixtures/kitchensink/src/features/webpack/CssInclusion.js +++ b/fixtures/kitchensink/src/features/webpack/CssInclusion.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/CssInclusion.test.js b/fixtures/kitchensink/src/features/webpack/CssInclusion.test.js index e315ee33b38..7d85a6024a5 100644 --- a/fixtures/kitchensink/src/features/webpack/CssInclusion.test.js +++ b/fixtures/kitchensink/src/features/webpack/CssInclusion.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/ImageInclusion.js b/fixtures/kitchensink/src/features/webpack/ImageInclusion.js index a6ca7aaa818..1a57bc36d66 100644 --- a/fixtures/kitchensink/src/features/webpack/ImageInclusion.js +++ b/fixtures/kitchensink/src/features/webpack/ImageInclusion.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/ImageInclusion.test.js b/fixtures/kitchensink/src/features/webpack/ImageInclusion.test.js index 042d2da3088..ffe9cafbcca 100644 --- a/fixtures/kitchensink/src/features/webpack/ImageInclusion.test.js +++ b/fixtures/kitchensink/src/features/webpack/ImageInclusion.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/JsonInclusion.js b/fixtures/kitchensink/src/features/webpack/JsonInclusion.js index e81f7639736..653c3e74440 100644 --- a/fixtures/kitchensink/src/features/webpack/JsonInclusion.js +++ b/fixtures/kitchensink/src/features/webpack/JsonInclusion.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/JsonInclusion.test.js b/fixtures/kitchensink/src/features/webpack/JsonInclusion.test.js index ee150f629a6..42f458df1a4 100644 --- a/fixtures/kitchensink/src/features/webpack/JsonInclusion.test.js +++ b/fixtures/kitchensink/src/features/webpack/JsonInclusion.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/LinkedModules.js b/fixtures/kitchensink/src/features/webpack/LinkedModules.js index de8a5e4ab5b..98ead2deceb 100644 --- a/fixtures/kitchensink/src/features/webpack/LinkedModules.js +++ b/fixtures/kitchensink/src/features/webpack/LinkedModules.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/LinkedModules.test.js b/fixtures/kitchensink/src/features/webpack/LinkedModules.test.js index aa1e911ae45..b850c2aa884 100644 --- a/fixtures/kitchensink/src/features/webpack/LinkedModules.test.js +++ b/fixtures/kitchensink/src/features/webpack/LinkedModules.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/NoExtInclusion.js b/fixtures/kitchensink/src/features/webpack/NoExtInclusion.js index be22a6c9fe1..0eb7942444c 100644 --- a/fixtures/kitchensink/src/features/webpack/NoExtInclusion.js +++ b/fixtures/kitchensink/src/features/webpack/NoExtInclusion.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/NoExtInclusion.test.js b/fixtures/kitchensink/src/features/webpack/NoExtInclusion.test.js index a08b5d21b0c..0d83b5f0c58 100644 --- a/fixtures/kitchensink/src/features/webpack/NoExtInclusion.test.js +++ b/fixtures/kitchensink/src/features/webpack/NoExtInclusion.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/SvgInclusion.js b/fixtures/kitchensink/src/features/webpack/SvgInclusion.js index 8876021aed6..c519423e6dc 100644 --- a/fixtures/kitchensink/src/features/webpack/SvgInclusion.js +++ b/fixtures/kitchensink/src/features/webpack/SvgInclusion.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/SvgInclusion.test.js b/fixtures/kitchensink/src/features/webpack/SvgInclusion.test.js index 585c6c19d8a..4b6a9a686ef 100644 --- a/fixtures/kitchensink/src/features/webpack/SvgInclusion.test.js +++ b/fixtures/kitchensink/src/features/webpack/SvgInclusion.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.js b/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.js index 5cae4516a3d..bdb81f17883 100644 --- a/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.js +++ b/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.test.js b/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.test.js index 73a8016e17b..538240dae65 100644 --- a/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.test.js +++ b/fixtures/kitchensink/src/features/webpack/UnknownExtInclusion.test.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/index.js b/fixtures/kitchensink/src/index.js index 46fb0dd2e55..5268eacecf9 100644 --- a/fixtures/kitchensink/src/index.js +++ b/fixtures/kitchensink/src/index.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ import React from 'react'; diff --git a/fixtures/kitchensink/src/subfolder/lol.js b/fixtures/kitchensink/src/subfolder/lol.js index 979cb3e7206..7eecce497b5 100644 --- a/fixtures/kitchensink/src/subfolder/lol.js +++ b/fixtures/kitchensink/src/subfolder/lol.js @@ -1,10 +1,8 @@ /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ module.exports = function() { diff --git a/package.json b/package.json index 9905cb5aa8f..38c757d7170 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.0.13", "description": "Configuration and scripts for Create React App.", "repository": "facebookincubator/create-react-app", - "license": "BSD-3-Clause", + "license": "MIT", "engines": { "node": ">=6" }, diff --git a/scripts/build.js b/scripts/build.js index 7691bfd5282..930897008e1 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/scripts/eject.js b/scripts/eject.js index 8f6af4f4721..2b859694fce 100644 --- a/scripts/eject.js +++ b/scripts/eject.js @@ -1,11 +1,9 @@ // @remove-file-on-eject /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ 'use strict'; diff --git a/scripts/init.js b/scripts/init.js index 0a62cc4a976..b283bad6ee6 100644 --- a/scripts/init.js +++ b/scripts/init.js @@ -1,11 +1,9 @@ // @remove-file-on-eject /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ 'use strict'; diff --git a/scripts/start.js b/scripts/start.js index b86943b4d9d..8df052d3bbb 100644 --- a/scripts/start.js +++ b/scripts/start.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/scripts/test.js b/scripts/test.js index e9adb48f0b5..b30113fe662 100644 --- a/scripts/test.js +++ b/scripts/test.js @@ -1,11 +1,9 @@ // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ // @remove-on-eject-end 'use strict'; diff --git a/scripts/utils/createJestConfig.js b/scripts/utils/createJestConfig.js index bc4ebf82271..3e819b68e73 100644 --- a/scripts/utils/createJestConfig.js +++ b/scripts/utils/createJestConfig.js @@ -1,11 +1,9 @@ // @remove-file-on-eject /** * Copyright (c) 2015-present, Facebook, Inc. - * All rights reserved. * - * This source code is licensed under the BSD-style license found in the - * LICENSE file in the root directory of this source tree. An additional grant - * of patent rights can be found in the PATENTS file in the same directory. + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ 'use strict';