(path, filename = "webpack.config.js")
| 84 | |
| 85 | // Helper to read from webpack.config.js or webpack.config.ts in a given path |
| 86 | const readFromWebpackConfig = (path, filename = "webpack.config.js") => |
| 87 | readFileSync(join(path, filename), "utf8"); |
| 88 | |
| 89 | describe("create-webpack-app cli", () => { |
| 90 | let dir; |