-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
22 lines (21 loc) · 962 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export { AfterDoneReporterPlugin } from "./lib/AfterDoneReporterPlugin.js";
export { buildConfig } from "./lib/buildConfig.js";
export { DependencyManifestPlugin } from "./lib/DependencyManifestPlugin.js";
// export * from "./lib/DependencyManifestPlugin.js";
export { devserverProxy } from "./lib/devserver-proxy.js";
export { WatchRunReporterPlugin } from "./lib/WatchRunReporterPlugin.js";
export { findLocalPort } from "./lib/find-local-docker-port.js";
// export * from "./lib/find-local-docker-port.js";
// import findLocalPort from "./lib/find-local-docker-port.js";
import webpackConfig from "./config/webpack.config.js";
export { webpackConfig };
// export default {
// // AfterDoneReporterPlugin,
// // buildConfig,
// // DependencyManifestPlugin,
// // devserverProxy,
// // WatchRunReporterPlugin,
// // findLocalPort,
// // // moo: () => console.log("COW SAYS"),
// };
// export const moo = () => console.log("COW SAYS");