diff --git a/package-lock.json b/package-lock.json index afe4c3a99dc7d8..fbfdb568c07040 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3087,7 +3087,6 @@ "version": "file:packages/custom-templated-path-webpack-plugin", "dev": true, "requires": { - "@babel/runtime": "^7.4.4", "escape-string-regexp": "^1.0.5" } }, diff --git a/packages/custom-templated-path-webpack-plugin/CHANGELOG.md b/packages/custom-templated-path-webpack-plugin/CHANGELOG.md index 3d97245e0fca25..c88cadcb821650 100644 --- a/packages/custom-templated-path-webpack-plugin/CHANGELOG.md +++ b/packages/custom-templated-path-webpack-plugin/CHANGELOG.md @@ -4,6 +4,10 @@ - Resolved an issue where only the value of the first matched tag would be produced. +### Internal + +- The module is no longer transpiled as part of a build process, and instead exposes its source directly as the `main` file. + ## 1.1.0 (2018-07-12) ### Internal diff --git a/packages/custom-templated-path-webpack-plugin/src/index.js b/packages/custom-templated-path-webpack-plugin/index.js similarity index 100% rename from packages/custom-templated-path-webpack-plugin/src/index.js rename to packages/custom-templated-path-webpack-plugin/index.js diff --git a/packages/custom-templated-path-webpack-plugin/package.json b/packages/custom-templated-path-webpack-plugin/package.json index adcb3375229112..edadb063e05182 100644 --- a/packages/custom-templated-path-webpack-plugin/package.json +++ b/packages/custom-templated-path-webpack-plugin/package.json @@ -22,13 +22,9 @@ "node": ">=8" }, "files": [ - "build", - "build-module" + "index.js" ], - "main": "build/index.js", - "module": "build-module/index.js", "dependencies": { - "@babel/runtime": "^7.4.4", "escape-string-regexp": "^1.0.5" }, "peerDependencies": {