{"id":19454809,"url":"https://github.com/gssify/export-all-loader","last_synced_at":"2026-06-11T02:31:48.919Z","repository":{"id":126188676,"uuid":"71340102","full_name":"gssify/export-all-loader","owner":"gssify","description":"Transforms export * from 'xxx'  to export {...} which can avoid `Object.defineProperty` in IE8","archived":false,"fork":false,"pushed_at":"2016-12-07T07:58:20.000Z","size":7,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-12T02:43:44.545Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gssify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-19T09:19:17.000Z","updated_at":"2016-11-24T05:41:24.000Z","dependencies_parsed_at":"2023-06-01T20:45:31.252Z","dependency_job_id":null,"html_url":"https://github.com/gssify/export-all-loader","commit_stats":null,"previous_names":["gssan/export-all-loader","gssan/export-wildcard-loader"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gssify/export-all-loader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gssify%2Fexport-all-loader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gssify%2Fexport-all-loader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gssify%2Fexport-all-loader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gssify%2Fexport-all-loader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gssify","download_url":"https://codeload.github.com/gssify/export-all-loader/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gssify%2Fexport-all-loader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34180147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-10T17:12:05.806Z","updated_at":"2026-06-11T02:31:48.895Z","avatar_url":"https://github.com/gssify.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# export-all-loader ![](https://badge.fury.io/js/export-all-loader.svg) ![issues](https://img.shields.io/github/issues/gssan/export-all-loader.svg) ![stars](https://img.shields.io/github/stars/gssan/export-all-loader.svg) ![MIT](https://img.shields.io/badge/license-MIT-blue.svg)\n\u003e Babel preloader for Webpack \n\nTransforms your `export * from 'xxx'` to `export {...}` which can avoid `Object.defineProperty` in IE8.\n\n## Installation\n```bash\n$ npm install export-all-loader\n```\n\n## Quick Start\n**webpack config:**\n```js\nmodule.exports = {\n    module: {\n        preLoaders: [\n            {\n                test: /\\.js$/,\n                loader: 'export-all'\n            }\n        ]\n    }\n}\n```\n\n## Examples\n**Input:**\n```js\nexport * from 'a.js';\nexport * from 'b.js';\n```\n**Output:**\n```js\nimport {a1, a2} from 'a.js';\nimport {b1, b2} from 'b.js';\n\nexport {a1, a2, b1, b2}\n```\n\n## Problems\n* Not support `export default`\n* Cannot use with `babel-plugin-module-resolver`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgssify%2Fexport-all-loader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgssify%2Fexport-all-loader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgssify%2Fexport-all-loader/lists"}