├── .babelrc ├── .gitattributes ├── .github └── CONTRIBUTING.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── Map.js ├── MapCache.js ├── ModuleCache.js ├── Package.js ├── Store.js ├── config.js ├── importModule.js ├── index.js ├── mapping.js └── util.js └── test ├── .babelrc ├── error-fixtures ├── lodash-chain-method │ └── actual.js ├── lodash-chaining │ └── actual.js └── lodash-unknown-method │ └── actual.js ├── fixtures ├── compat-arguments │ ├── actual.js │ └── expected.js ├── compat-basic-default │ ├── actual.js │ └── expected.js ├── compat-basic-member │ ├── actual.js │ └── expected.js ├── compat-default-and-member │ ├── actual.js │ └── expected.js ├── compat-expression-default │ ├── actual.js │ └── expected.js ├── compat-expression-member │ ├── actual.js │ └── expected.js ├── compat-property-values │ ├── actual.js │ └── expected.js ├── compat-variable-declarator-exports │ ├── actual.js │ └── expected.js ├── es-arguments │ ├── actual.js │ └── expected.js ├── es-basic-default │ ├── actual.js │ └── expected.js ├── es-basic-member │ ├── actual.js │ └── expected.js ├── es-default-and-member │ ├── actual.js │ └── expected.js ├── es-expression-default │ ├── actual.js │ └── expected.js ├── es-expression-member │ ├── actual.js │ └── expected.js ├── es-property-values │ ├── actual.js │ └── expected.js ├── es-variable-declarator-exports │ ├── actual.js │ └── expected.js ├── fp-arguments │ ├── actual.js │ └── expected.js ├── fp-basic-default │ ├── actual.js │ └── expected.js ├── fp-basic-member │ ├── actual.js │ └── expected.js ├── fp-convert │ ├── actual.js │ └── expected.js ├── fp-default-and-member │ ├── actual.js │ └── expected.js ├── fp-expression-default │ ├── actual.js │ └── expected.js ├── fp-expression-member │ ├── actual.js │ └── expected.js ├── fp-property-values │ ├── actual.js │ └── expected.js ├── fp-variable-declarator-exports │ ├── actual.js │ └── expected.js ├── lodash-arguments │ ├── actual.js │ └── expected.js ├── lodash-arrays │ ├── actual.js │ └── expected.js ├── lodash-assignment │ ├── actual.js │ └── expected.js ├── lodash-basic-default │ ├── actual.js │ └── expected.js ├── lodash-basic-member │ ├── actual.js │ └── expected.js ├── lodash-basic-namespace │ ├── actual.js │ └── expected.js ├── lodash-default-and-member │ ├── actual.js │ └── expected.js ├── lodash-expression-default │ ├── actual.js │ └── expected.js ├── lodash-expression-member │ ├── actual.js │ └── expected.js ├── lodash-nested-scope │ ├── actual.js │ └── expected.js ├── lodash-placeholders │ ├── actual.js │ └── expected.js ├── lodash-property-assignment │ ├── actual.js │ └── expected.js ├── lodash-property-values │ ├── actual.js │ └── expected.js ├── lodash-reimports │ ├── actual.js │ └── expected.js ├── lodash-repeat-identifiers │ ├── actual.js │ └── expected.js ├── lodash-repeat-use │ ├── actual.js │ └── expected.js ├── lodash-specifier-alias │ ├── actual.js │ └── expected.js ├── lodash-specifier-exports │ ├── actual.js │ └── expected.js ├── lodash-spread-operator │ ├── actual.js │ └── expected.js ├── lodash-variable-declarator-exports │ ├── actual.js │ └── expected.js └── scoped-module │ ├── actual.js │ └── expected.js ├── index.js ├── mixed-fixtures ├── async-bound-ramda │ ├── .babelrc │ ├── actual.js │ ├── expected.js │ └── options.json ├── lodash-and-fp │ ├── actual.js │ └── expected.js ├── object-rest-spread │ ├── .babelrc │ ├── actual.js │ └── expected.js ├── react-bootstrap │ ├── .babelrc │ ├── actual.js │ ├── expected.js │ └── options.json ├── syntax-flow │ ├── .babelrc │ ├── actual.js │ └── expected.js └── syntax-jsx │ ├── .babelrc │ ├── actual.js │ └── expected.js └── parsing-fixtures ├── for-of └── actual.js └── wildcard-exports ├── .babelrc └── actual.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | lib 4 | node_modules 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/package.json -------------------------------------------------------------------------------- /src/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/Map.js -------------------------------------------------------------------------------- /src/MapCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/MapCache.js -------------------------------------------------------------------------------- /src/ModuleCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/ModuleCache.js -------------------------------------------------------------------------------- /src/Package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/Package.js -------------------------------------------------------------------------------- /src/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/Store.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/config.js -------------------------------------------------------------------------------- /src/importModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/importModule.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/mapping.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/src/util.js -------------------------------------------------------------------------------- /test/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/.babelrc -------------------------------------------------------------------------------- /test/error-fixtures/lodash-chain-method/actual.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | 3 | _.chain().map(); 4 | -------------------------------------------------------------------------------- /test/error-fixtures/lodash-chaining/actual.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | 3 | _().map(); 4 | -------------------------------------------------------------------------------- /test/error-fixtures/lodash-unknown-method/actual.js: -------------------------------------------------------------------------------- 1 | import _ from 'lodash'; 2 | 3 | _.unknown(); 4 | -------------------------------------------------------------------------------- /test/fixtures/compat-arguments/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-arguments/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-arguments/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-arguments/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-basic-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-basic-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-basic-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-basic-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-basic-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-basic-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-basic-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-basic-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-default-and-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-default-and-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-default-and-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-default-and-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-expression-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-expression-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-expression-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-expression-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-expression-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-expression-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-expression-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-expression-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-property-values/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-property-values/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-property-values/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-property-values/expected.js -------------------------------------------------------------------------------- /test/fixtures/compat-variable-declarator-exports/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-variable-declarator-exports/actual.js -------------------------------------------------------------------------------- /test/fixtures/compat-variable-declarator-exports/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/compat-variable-declarator-exports/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-arguments/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-arguments/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-arguments/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-arguments/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-basic-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-basic-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-basic-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-basic-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-basic-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-basic-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-basic-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-basic-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-default-and-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-default-and-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-default-and-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-default-and-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-expression-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-expression-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-expression-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-expression-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-expression-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-expression-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-expression-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-expression-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-property-values/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-property-values/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-property-values/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-property-values/expected.js -------------------------------------------------------------------------------- /test/fixtures/es-variable-declarator-exports/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-variable-declarator-exports/actual.js -------------------------------------------------------------------------------- /test/fixtures/es-variable-declarator-exports/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/es-variable-declarator-exports/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-arguments/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-arguments/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-arguments/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-arguments/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-basic-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-basic-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-basic-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-basic-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-basic-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-basic-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-basic-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-basic-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-convert/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-convert/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-convert/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-convert/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-default-and-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-default-and-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-default-and-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-default-and-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-expression-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-expression-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-expression-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-expression-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-expression-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-expression-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-expression-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-expression-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-property-values/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-property-values/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-property-values/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-property-values/expected.js -------------------------------------------------------------------------------- /test/fixtures/fp-variable-declarator-exports/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-variable-declarator-exports/actual.js -------------------------------------------------------------------------------- /test/fixtures/fp-variable-declarator-exports/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/fp-variable-declarator-exports/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-arguments/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-arguments/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-arguments/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-arguments/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-arrays/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-arrays/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-arrays/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-arrays/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-assignment/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-assignment/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-assignment/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-assignment/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-basic-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-basic-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-basic-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-basic-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-basic-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-basic-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-basic-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-basic-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-basic-namespace/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-basic-namespace/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-basic-namespace/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-basic-namespace/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-default-and-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-default-and-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-default-and-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-default-and-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-expression-default/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-expression-default/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-expression-default/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-expression-default/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-expression-member/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-expression-member/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-expression-member/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-expression-member/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-nested-scope/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-nested-scope/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-nested-scope/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-nested-scope/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-placeholders/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-placeholders/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-placeholders/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-placeholders/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-property-assignment/actual.js: -------------------------------------------------------------------------------- 1 | import { bind } from 'lodash'; 2 | 3 | bind.placeholder = {}; 4 | -------------------------------------------------------------------------------- /test/fixtures/lodash-property-assignment/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-property-assignment/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-property-values/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-property-values/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-property-values/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-property-values/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-reimports/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-reimports/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-reimports/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-reimports/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-repeat-identifiers/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-repeat-identifiers/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-repeat-identifiers/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-repeat-identifiers/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-repeat-use/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-repeat-use/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-repeat-use/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-repeat-use/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-specifier-alias/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-specifier-alias/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-specifier-alias/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-specifier-alias/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-specifier-exports/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-specifier-exports/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-specifier-exports/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-specifier-exports/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-spread-operator/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-spread-operator/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-spread-operator/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-spread-operator/expected.js -------------------------------------------------------------------------------- /test/fixtures/lodash-variable-declarator-exports/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-variable-declarator-exports/actual.js -------------------------------------------------------------------------------- /test/fixtures/lodash-variable-declarator-exports/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/lodash-variable-declarator-exports/expected.js -------------------------------------------------------------------------------- /test/fixtures/scoped-module/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/scoped-module/actual.js -------------------------------------------------------------------------------- /test/fixtures/scoped-module/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/fixtures/scoped-module/expected.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mixed-fixtures/async-bound-ramda/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/async-bound-ramda/.babelrc -------------------------------------------------------------------------------- /test/mixed-fixtures/async-bound-ramda/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/async-bound-ramda/actual.js -------------------------------------------------------------------------------- /test/mixed-fixtures/async-bound-ramda/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/async-bound-ramda/expected.js -------------------------------------------------------------------------------- /test/mixed-fixtures/async-bound-ramda/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/async-bound-ramda/options.json -------------------------------------------------------------------------------- /test/mixed-fixtures/lodash-and-fp/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/lodash-and-fp/actual.js -------------------------------------------------------------------------------- /test/mixed-fixtures/lodash-and-fp/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/lodash-and-fp/expected.js -------------------------------------------------------------------------------- /test/mixed-fixtures/object-rest-spread/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/object-rest-spread/.babelrc -------------------------------------------------------------------------------- /test/mixed-fixtures/object-rest-spread/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/object-rest-spread/actual.js -------------------------------------------------------------------------------- /test/mixed-fixtures/object-rest-spread/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/object-rest-spread/expected.js -------------------------------------------------------------------------------- /test/mixed-fixtures/react-bootstrap/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/react-bootstrap/.babelrc -------------------------------------------------------------------------------- /test/mixed-fixtures/react-bootstrap/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/react-bootstrap/actual.js -------------------------------------------------------------------------------- /test/mixed-fixtures/react-bootstrap/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/react-bootstrap/expected.js -------------------------------------------------------------------------------- /test/mixed-fixtures/react-bootstrap/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "react-bootstrap" 3 | } 4 | -------------------------------------------------------------------------------- /test/mixed-fixtures/syntax-flow/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/syntax-flow/.babelrc -------------------------------------------------------------------------------- /test/mixed-fixtures/syntax-flow/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/syntax-flow/actual.js -------------------------------------------------------------------------------- /test/mixed-fixtures/syntax-flow/expected.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | function a(b: Predicate<*>) {} 4 | -------------------------------------------------------------------------------- /test/mixed-fixtures/syntax-jsx/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/syntax-jsx/.babelrc -------------------------------------------------------------------------------- /test/mixed-fixtures/syntax-jsx/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/syntax-jsx/actual.js -------------------------------------------------------------------------------- /test/mixed-fixtures/syntax-jsx/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/mixed-fixtures/syntax-jsx/expected.js -------------------------------------------------------------------------------- /test/parsing-fixtures/for-of/actual.js: -------------------------------------------------------------------------------- 1 | for (const a of b) {} 2 | -------------------------------------------------------------------------------- /test/parsing-fixtures/wildcard-exports/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lodash/babel-plugin-lodash/HEAD/test/parsing-fixtures/wildcard-exports/.babelrc -------------------------------------------------------------------------------- /test/parsing-fixtures/wildcard-exports/actual.js: -------------------------------------------------------------------------------- 1 | export * from './foo'; 2 | --------------------------------------------------------------------------------