{"id":20438321,"url":"https://github.com/seebigs/webpack-bundle-duplicator-plugin","last_synced_at":"2025-08-21T18:12:01.133Z","repository":{"id":75737182,"uuid":"288294341","full_name":"seebigs/webpack-bundle-duplicator-plugin","owner":"seebigs","description":"Don't re-generate the same bundle content multiple times- make copies of your output bundles and give different names.","archived":false,"fork":false,"pushed_at":"2020-08-18T01:16:35.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-16T17:28:19.864Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seebigs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-08-17T21:55:22.000Z","updated_at":"2020-08-18T01:16:37.000Z","dependencies_parsed_at":"2023-03-24T22:49:38.442Z","dependency_job_id":null,"html_url":"https://github.com/seebigs/webpack-bundle-duplicator-plugin","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"bff8fdd44c0f5189e7e6f0f7d2cfcafb8ca918ec"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seebigs%2Fwebpack-bundle-duplicator-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seebigs%2Fwebpack-bundle-duplicator-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seebigs%2Fwebpack-bundle-duplicator-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seebigs%2Fwebpack-bundle-duplicator-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seebigs","download_url":"https://codeload.github.com/seebigs/webpack-bundle-duplicator-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241983598,"owners_count":20052711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-15T09:10:25.044Z","updated_at":"2025-03-05T07:21:55.400Z","avatar_url":"https://github.com/seebigs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# webpack-bundle-duplicator-plugin\n\nDon't re-generate the same bundle content multiple times- make copies of your output bundles and specify different names. Save huge amounts of build time when generating multiple copies of the same entry files.\n\n## Install\n```\n$ npm install webpack-bundle-duplicator-plugin --save-dev\n```\n\n## Add Plugin to Webpack\nwebpack.config.js\n```js\nconst WebpackBundleDuplicatorPlugin = require('webpack-bundle-duplicator-plugin');\n\nmodule.exports = {\n    entry: {\n        'js/main.js': 'src/entries/main.js',\n    },\n    plugins: [\n        new WebpackBundleDuplicatorPlugin({\n            duplicates: {\n                'js/main.js': [\n                    'js/dupe1.js',\n                    'js/dupe2.js',\n                ],\n            },\n        }),\n    ],\n};\n\n// Outputs 3 files (all with same contents)\n// ./dist/js/main.js\n// ./dist/js/dupe1.js\n// ./dist/js/dupe2.js\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseebigs%2Fwebpack-bundle-duplicator-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseebigs%2Fwebpack-bundle-duplicator-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseebigs%2Fwebpack-bundle-duplicator-plugin/lists"}