Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
apply fix from 01c0097 (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Apr 21, 2019
1 parent 83c8d7f commit 81553df
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/core/create_compilers/WebpackResult.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import format_messages from 'webpack-format-messages';
import { CompileResult, BuildInfo, CompileError, Chunk, CssFile } from './interfaces';
import { ManifestData, Dirs } from '../../interfaces';
import { ManifestData, Dirs, PageComponent } from '../../interfaces';

const locPattern = /\((\d+):(\d+)\)$/;

Expand All @@ -9,7 +9,7 @@ function munge_warning_or_error(message: string) {
const lines = message.split('\n');

const file = lines.shift()
.replace('[7m', '') // careful — there is a special character at the beginning of this string
.replace('[7m', '') // careful — there is a special character at the beginning of this string
.replace('', '')
.replace('./', '');

Expand Down Expand Up @@ -66,12 +66,15 @@ export default class WebpackResult implements CompileResult {
assets: this.assets,
css: {
main: extract_css(this.assets.main),
chunks: Object
.keys(this.assets)
.filter(chunkName => chunkName !== 'main')
.reduce((chunks: { [key: string]: string }, chukName) => {
const assets = this.assets[chukName];
chunks[chukName] = extract_css(assets);
chunks: manifest_data.components
.reduce((chunks: Record<string, string[]>, component: PageComponent) => {
const css_dependencies = [];
const css = extract_css(this.assets[component.name]);

if (css) css_dependencies.push(css);

chunks[component.file] = css_dependencies;

return chunks;
}, {})
}
Expand Down

0 comments on commit 81553df

Please sign in to comment.