Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • C create-react-app
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,547
    • Issues 1,547
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 417
    • Merge requests 417
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Meta
  • create-react-app
  • Merge requests
  • !2029

Updates for React 15.5

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Administrator requested to merge github/fork/Timer/react155 into master 8 years ago
  • Overview 2
  • Commits 1
  • Pipelines 0
  • Changes 18

Created by: Timer

Fixes deprecation warnings :smile:

Compare
  • master (base)

and
  • latest version
    03cbd7f1
    1 commit, 2 years ago

18 files
+ 35
- 17

    Preferences

    File browser
    Compare changes
packages/react-scr‎ipts/…/kitchensink‎
s‎rc‎
feat‎ures‎
e‎nv‎
NodeP‎ath.js‎ +2 -1
syn‎tax‎
ArrayDestr‎ucturing.js‎ +2 -1
ArraySp‎read.js‎ +2 -1
AsyncA‎wait.js‎ +2 -1
ClassProp‎erties.js‎ +2 -1
ComputedPr‎operties.js‎ +2 -1
CustomInter‎polation.js‎ +2 -1
DefaultPar‎ameters.js‎ +2 -1
Destructurin‎gAndAwait.js‎ +2 -1
Genera‎tors.js‎ +2 -1
ObjectDestr‎ucturing.js‎ +2 -1
ObjectS‎pread.js‎ +2 -1
Promi‎ses.js‎ +2 -1
RestAndD‎efault.js‎ +2 -1
RestPara‎meters.js‎ +2 -1
TemplateInte‎rpolation.js‎ +2 -1
App‎.js‎ +2 -1
.template.dep‎endencies.json‎ +1 -0
packages/react-scripts/fixtures/kitchensink/src/features/env/NodePath.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import load from 'absoluteLoad';
export default class extends Component {
packages/react-scripts/fixtures/kitchensink/src/features/env/NodePath.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import load from 'absoluteLoad';
export default class extends Component {
packages/react-scripts/fixtures/kitchensink/src/features/syntax/ArrayDestructuring.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load() {
return [[1, '1'], [2, '2'], [3, '3'], [4, '4']];
packages/react-scripts/fixtures/kitchensink/src/features/syntax/ArraySpread.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load(users) {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/AsyncAwait.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
async function load() {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/ClassProperties.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
export default class extends Component {
static propTypes = {
packages/react-scripts/fixtures/kitchensink/src/features/syntax/ComputedProperties.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load(prefix) {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/CustomInterpolation.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
const styled = ([style]) =>
style
packages/react-scripts/fixtures/kitchensink/src/features/syntax/DefaultParameters.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load(id = 0) {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/DestructuringAndAwait.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
async function load() {
return {
packages/react-scripts/fixtures/kitchensink/src/features/syntax/Generators.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function* load(limit) {
let i = 1;
packages/react-scripts/fixtures/kitchensink/src/features/syntax/ObjectDestructuring.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load() {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/ObjectSpread.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load(baseUser) {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/Promises.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load() {
return Promise.resolve([
packages/react-scripts/fixtures/kitchensink/src/features/syntax/RestAndDefault.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load({ id, ...rest } = { id: 0, user: { id: 42, name: '42' } }) {
return [
packages/react-scripts/fixtures/kitchensink/src/features/syntax/RestParameters.js
+ 2
- 1
  • View file @ 03cbd7f1

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,7 +7,8 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/
import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
function load({ id = 0, ...rest }) {
return [
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
1
CLA Signed
1
CLA Signed
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
1
1 participant
Administrator
Reference: facebook/create-react-app!2029
Source branch: github/fork/Timer/react155

Menu

Explore Projects Groups Snippets