Skip to content

Commit

Permalink
chore(rocketact-scripts): remove console & add webpack plugin comment
Browse files Browse the repository at this point in the history
  • Loading branch information
beanlee committed Nov 6, 2020
1 parent bce6f9a commit a8dd28e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/rocketact-scripts/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ export default (api: CoreAPI) => {
`Build completed in ${duration}s`
)}`
);
console.dir(stats);
resolve();
}
});
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketact-scripts/src/config/webpack/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default (api: CoreAPI) => {
webpackChain
// https://www.webpackjs.com/plugins/hashed-module-ids-plugin/
.plugin("HashedModuleIdsPlugin")
.use(new webpack.HashedModuleIdsPlugin() as PluginClass)
.use(new webpack.HashedModuleIdsPlugin() as PluginClass) // new (...opts: any[]): webpack.Plugin;
.end()
.plugin("MiniCssExtractPlugin")
.use(MiniCssExtractPlugin, [
Expand Down

0 comments on commit a8dd28e

Please sign in to comment.