diff --git a/package-lock.json b/package-lock.json index afe4c3a99dc7d8..b8f5e28385deaf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3378,7 +3378,6 @@ "version": "file:packages/library-export-default-webpack-plugin", "dev": true, "requires": { - "@babel/runtime": "^7.4.4", "lodash": "^4.17.11", "webpack-sources": "^1.1.0" } diff --git a/packages/library-export-default-webpack-plugin/CHANGELOG.md b/packages/library-export-default-webpack-plugin/CHANGELOG.md new file mode 100644 index 00000000000000..66b9261df4a8bc --- /dev/null +++ b/packages/library-export-default-webpack-plugin/CHANGELOG.md @@ -0,0 +1,5 @@ +## Master + +### Internal + +- The module is no longer transpiled as part of a build process, and instead exposes its source directly as the `main` file. diff --git a/packages/library-export-default-webpack-plugin/src/index.js b/packages/library-export-default-webpack-plugin/index.js similarity index 100% rename from packages/library-export-default-webpack-plugin/src/index.js rename to packages/library-export-default-webpack-plugin/index.js diff --git a/packages/library-export-default-webpack-plugin/package.json b/packages/library-export-default-webpack-plugin/package.json index 91353134cbedce..66537bc38c1b76 100644 --- a/packages/library-export-default-webpack-plugin/package.json +++ b/packages/library-export-default-webpack-plugin/package.json @@ -22,12 +22,9 @@ "node": ">=8" }, "files": [ - "build", - "build-module" + "index.js" ], - "main": "build/index.js", "dependencies": { - "@babel/runtime": "^7.4.4", "lodash": "^4.17.11", "webpack-sources": "^1.1.0" },