├── .babelrc ├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── flow └── interfaces │ └── mocha.js ├── package.json ├── prettier.config.js ├── src ├── index.js ├── isAnnotatedForRemoval.js ├── isStatelessComponent.js └── remove.js ├── test ├── fixtures.test.js ├── fixtures │ ├── additional-libraries-regexp │ │ ├── actual.js │ │ ├── custom-prop-types.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ └── options.js │ ├── additional-libraries │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ └── options.json │ ├── bugfix-169 │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── bugfix-175 │ │ ├── actual.js │ │ └── expected-unsafe-wrap-es6.js │ ├── bugfix-assignment │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── class-comment-annotation │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ └── expected-remove-es6.js │ ├── class-name-matchers-no-match │ │ ├── actual.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── class-name-matchers │ │ ├── actual.js │ │ ├── expected-wrap-es5.js │ │ ├── expected-wrap-es6.js │ │ └── options.json │ ├── const-in-anonymous-validator │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── create-class │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── dont-remove-used-import │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ └── options.json │ ├── es-class-assign-property-variable-export │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── es-class-assign-property-variable │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── es-class-assign-property │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── es-class-extend-component │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── es-class-extend-deopt │ │ ├── actual.js │ │ ├── expected-remove-es6.js │ │ └── expected-wrap-es6.js │ ├── es-class-extend-global-base-component │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── es-class-inheritance │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── es-class-no-name │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── es-class-static-property │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── flow │ │ ├── actual.js │ │ ├── expected-wrap-es5.js │ │ └── options.json │ ├── ignore-filenames │ │ ├── actual.js │ │ ├── expected-remove-es6.js │ │ └── options.json │ ├── issue-106 │ │ ├── actual.js │ │ └── expected-wrap-es6.js │ ├── not-react-assign-property │ │ ├── actual.js │ │ ├── expected-remove-es6.js │ │ └── expected-wrap-es6.js │ ├── not-react │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── react-create-class-custom-name-no-property-name │ │ ├── actual.js │ │ ├── expected-remove-es6.js │ │ ├── notReact.js │ │ └── options.json │ ├── react-create-class-custom-name │ │ ├── actual.js │ │ ├── expected-remove-es6.js │ │ └── options.json │ ├── react-create-class │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── recursive │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── remove-import-proptypes │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ └── options.json │ ├── shared-prop-type-variable │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── stateless-arrow-return-function │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── stateless-force-removal │ │ ├── actual.js │ │ └── expected-remove-es6.js │ ├── stateless-functional-components │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── stateless-return-undefined │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── unsafe-wrap │ │ ├── actual.js │ │ ├── expected.js │ │ └── options.json │ ├── variable-assignment-member-expressions │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ ├── variable-assignment │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ ├── expected-remove-es6.js │ │ ├── expected-wrap-es5.js │ │ └── expected-wrap-es6.js │ └── variable-comment-annotation │ │ ├── actual.js │ │ ├── expected-remove-es5.js │ │ └── expected-remove-es6.js ├── mocha.opts └── utils.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /test/fixtures/ 2 | /lib 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/README.md -------------------------------------------------------------------------------- /flow/interfaces/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/flow/interfaces/mocha.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isAnnotatedForRemoval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/src/isAnnotatedForRemoval.js -------------------------------------------------------------------------------- /src/isStatelessComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/src/isStatelessComponent.js -------------------------------------------------------------------------------- /src/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/src/remove.js -------------------------------------------------------------------------------- /test/fixtures.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures.test.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries-regexp/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries-regexp/actual.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries-regexp/custom-prop-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries-regexp/custom-prop-types.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries-regexp/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries-regexp/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries-regexp/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries-regexp/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries-regexp/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries-regexp/options.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries/actual.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/additional-libraries/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/additional-libraries/options.json -------------------------------------------------------------------------------- /test/fixtures/bugfix-169/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/bugfix-169/actual.js -------------------------------------------------------------------------------- /test/fixtures/bugfix-169/expected-remove-es6.js: -------------------------------------------------------------------------------- 1 | class Test extends React.Component {} 2 | -------------------------------------------------------------------------------- /test/fixtures/bugfix-175/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/bugfix-175/actual.js -------------------------------------------------------------------------------- /test/fixtures/bugfix-175/expected-unsafe-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/bugfix-175/expected-unsafe-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/bugfix-assignment/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/bugfix-assignment/actual.js -------------------------------------------------------------------------------- /test/fixtures/bugfix-assignment/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/bugfix-assignment/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/class-comment-annotation/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-comment-annotation/actual.js -------------------------------------------------------------------------------- /test/fixtures/class-comment-annotation/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-comment-annotation/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/class-comment-annotation/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-comment-annotation/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers-no-match/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-name-matchers-no-match/actual.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers-no-match/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-name-matchers-no-match/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers-no-match/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-name-matchers-no-match/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-name-matchers/actual.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-name-matchers/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/class-name-matchers/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/class-name-matchers/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "classNameMatchers": ["BaseComponent"] 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/const-in-anonymous-validator/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/const-in-anonymous-validator/actual.js -------------------------------------------------------------------------------- /test/fixtures/const-in-anonymous-validator/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/const-in-anonymous-validator/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/const-in-anonymous-validator/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/const-in-anonymous-validator/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/const-in-anonymous-validator/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/const-in-anonymous-validator/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/const-in-anonymous-validator/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/const-in-anonymous-validator/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/create-class/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/create-class/actual.js -------------------------------------------------------------------------------- /test/fixtures/create-class/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/create-class/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/dont-remove-used-import/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/dont-remove-used-import/actual.js -------------------------------------------------------------------------------- /test/fixtures/dont-remove-used-import/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/dont-remove-used-import/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/dont-remove-used-import/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/dont-remove-used-import/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/dont-remove-used-import/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "removeImport": true 3 | } -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable-export/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable-export/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable-export/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable-export/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable-export/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable-export/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable-export/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable-export/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable-export/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable-export/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property-variable/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property-variable/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-assign-property/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-assign-property/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-component/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-component/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-component/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-component/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-component/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-component/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-component/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-component/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-component/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-component/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-deopt/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-deopt/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-deopt/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-deopt/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-deopt/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-deopt/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-global-base-component/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-global-base-component/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-extend-global-base-component/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-extend-global-base-component/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-inheritance/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-inheritance/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-inheritance/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-inheritance/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-inheritance/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-inheritance/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-inheritance/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-inheritance/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-inheritance/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-inheritance/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-no-name/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-no-name/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-no-name/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-no-name/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-no-name/expected-remove-es6.js: -------------------------------------------------------------------------------- 1 | export default class extends React.Component { 2 | render() {} 3 | 4 | } 5 | -------------------------------------------------------------------------------- /test/fixtures/es-class-no-name/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-no-name/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-no-name/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-no-name/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-static-property/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-static-property/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-class-static-property/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-static-property/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-static-property/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-static-property/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/es-class-static-property/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-static-property/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/es-class-static-property/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/es-class-static-property/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/flow/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/flow/actual.js -------------------------------------------------------------------------------- /test/fixtures/flow/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/flow/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/flow/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/flow/options.json -------------------------------------------------------------------------------- /test/fixtures/ignore-filenames/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/ignore-filenames/actual.js -------------------------------------------------------------------------------- /test/fixtures/ignore-filenames/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/ignore-filenames/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/ignore-filenames/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/ignore-filenames/options.json -------------------------------------------------------------------------------- /test/fixtures/issue-106/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/issue-106/actual.js -------------------------------------------------------------------------------- /test/fixtures/issue-106/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/issue-106/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/not-react-assign-property/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/not-react-assign-property/actual.js -------------------------------------------------------------------------------- /test/fixtures/not-react-assign-property/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/not-react-assign-property/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/not-react-assign-property/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/not-react-assign-property/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/not-react/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/not-react/actual.js -------------------------------------------------------------------------------- /test/fixtures/not-react/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/not-react/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name-no-property-name/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name-no-property-name/actual.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name-no-property-name/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name-no-property-name/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name-no-property-name/notReact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name-no-property-name/notReact.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name-no-property-name/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name-no-property-name/options.json -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name/actual.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class-custom-name/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class-custom-name/options.json -------------------------------------------------------------------------------- /test/fixtures/react-create-class/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class/actual.js -------------------------------------------------------------------------------- /test/fixtures/react-create-class/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/react-create-class/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/recursive/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/recursive/actual.js -------------------------------------------------------------------------------- /test/fixtures/recursive/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/recursive/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/remove-import-proptypes/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/remove-import-proptypes/actual.js -------------------------------------------------------------------------------- /test/fixtures/remove-import-proptypes/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/remove-import-proptypes/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/remove-import-proptypes/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/remove-import-proptypes/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/remove-import-proptypes/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "removeImport": true 3 | } -------------------------------------------------------------------------------- /test/fixtures/shared-prop-type-variable/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/shared-prop-type-variable/actual.js -------------------------------------------------------------------------------- /test/fixtures/shared-prop-type-variable/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/shared-prop-type-variable/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/shared-prop-type-variable/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/shared-prop-type-variable/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/shared-prop-type-variable/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/shared-prop-type-variable/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/shared-prop-type-variable/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/shared-prop-type-variable/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-arrow-return-function/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-arrow-return-function/actual.js -------------------------------------------------------------------------------- /test/fixtures/stateless-arrow-return-function/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-arrow-return-function/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/stateless-arrow-return-function/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-arrow-return-function/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-arrow-return-function/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-arrow-return-function/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/stateless-arrow-return-function/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-arrow-return-function/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-force-removal/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-force-removal/actual.js -------------------------------------------------------------------------------- /test/fixtures/stateless-force-removal/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-force-removal/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-functional-components/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-functional-components/actual.js -------------------------------------------------------------------------------- /test/fixtures/stateless-functional-components/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-functional-components/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/stateless-functional-components/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-functional-components/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-functional-components/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-functional-components/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/stateless-functional-components/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-functional-components/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-return-undefined/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-return-undefined/actual.js -------------------------------------------------------------------------------- /test/fixtures/stateless-return-undefined/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-return-undefined/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/stateless-return-undefined/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-return-undefined/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/stateless-return-undefined/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-return-undefined/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/stateless-return-undefined/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/stateless-return-undefined/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/unsafe-wrap/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/unsafe-wrap/actual.js -------------------------------------------------------------------------------- /test/fixtures/unsafe-wrap/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/unsafe-wrap/expected.js -------------------------------------------------------------------------------- /test/fixtures/unsafe-wrap/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "mode": "unsafe-wrap" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/variable-assignment-member-expressions/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment-member-expressions/actual.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment-member-expressions/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment-member-expressions/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment-member-expressions/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment-member-expressions/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment-member-expressions/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment-member-expressions/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment-member-expressions/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment-member-expressions/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment/actual.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment/expected-remove-es6.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment/expected-wrap-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment/expected-wrap-es5.js -------------------------------------------------------------------------------- /test/fixtures/variable-assignment/expected-wrap-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-assignment/expected-wrap-es6.js -------------------------------------------------------------------------------- /test/fixtures/variable-comment-annotation/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-comment-annotation/actual.js -------------------------------------------------------------------------------- /test/fixtures/variable-comment-annotation/expected-remove-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-comment-annotation/expected-remove-es5.js -------------------------------------------------------------------------------- /test/fixtures/variable-comment-annotation/expected-remove-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/fixtures/variable-comment-annotation/expected-remove-es6.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/test/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/HEAD/yarn.lock --------------------------------------------------------------------------------