You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
I am trying to write a plugin that produces a JSON manifest file from semantic module names to the files that were created by my webpack build.
e.g. I have a main.js file that requires a sass file. The built directory ends up with 3 files: main-[hash].js, 1-[chunkhash].js, and main-[contenthash].css
I had this working before introducing extract-text-plugin into the picture by iterating over stats.compulation.namedChunks within my manifest plugin. However, the css files are not in that object.
What can I do to achieve this sort of thing?
The text was updated successfully, but these errors were encountered:
I am trying to write a plugin that produces a JSON manifest file from semantic module names to the files that were created by my webpack build.
e.g. I have a main.js file that requires a sass file. The built directory ends up with 3 files:
main-[hash].js
,1-[chunkhash].js
, andmain-[contenthash].css
I want my manifest to contain the following:
I had this working before introducing
extract-text-plugin
into the picture by iterating overstats.compulation.namedChunks
within my manifest plugin. However, the css files are not in that object.What can I do to achieve this sort of thing?
The text was updated successfully, but these errors were encountered: