├── .github └── workflows │ └── test.yml ├── .gitignore ├── .release-it.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ ├── fixtures │ ├── alias │ │ ├── input.js │ │ └── output.js │ ├── destructured │ │ ├── input.js │ │ └── output.js │ └── es │ │ ├── input.mjs │ │ └── output.js └── index.test.js ├── index.js ├── jest.config.js └── package.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .DS_Store -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/.release-it.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/fixtures/alias/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/fixtures/alias/input.js -------------------------------------------------------------------------------- /__tests__/fixtures/alias/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/fixtures/alias/output.js -------------------------------------------------------------------------------- /__tests__/fixtures/destructured/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/fixtures/destructured/input.js -------------------------------------------------------------------------------- /__tests__/fixtures/destructured/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/fixtures/destructured/output.js -------------------------------------------------------------------------------- /__tests__/fixtures/es/input.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/fixtures/es/input.mjs -------------------------------------------------------------------------------- /__tests__/fixtures/es/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/fixtures/es/output.js -------------------------------------------------------------------------------- /__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/__tests__/index.test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josteph/esbuild-plugin-lodash/HEAD/package.json --------------------------------------------------------------------------------