Файл исходного кода sass Angular 4 Webpack почти пустой (с использованием ExtractTextPlugin) - PullRequest
0 голосов
/ 30 апреля 2018

Я ссылаюсь на файл sass (app.scss) как импорт (при включении его в массив styleUrls получала ошибку)

import { Component, ViewEncapsulation } from '@angular/core';
import '../../assets/css/app.scss';

@Component({
    selector: 'appMain',

    styleUrls: [
        '../../../../node_modules/ng2-toastr/bundles/ng2-toastr.min.css',
    ],
    encapsulation: ViewEncapsulation.None,
    templateUrl: './app.main.component.html'
})
export class AppMainComponent {
}

При использовании веб-пакета с моей текущей конфигурацией, в том числе с использованием ExtractTextPlugin, мой результирующий файл app.css.map в основном пуст. Похоже:

{"version":3,"sources":[],"names":[],"mappings":"","file":"app.css","sourceRoot":""}

Что мне нужно изменить, чтобы правильно сгенерировать исходный файл карты? Мой файл webpack.config.js выглядит так:

const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const AotPlugin = require('@ngtools/webpack').AotPlugin;
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = (env) => {
    // Configuration in common to both client-side and server-side bundles
    const isDevBuild = !(env && env.prod);
    const extractCSS = new ExtractTextPlugin('app.css');
    const sharedConfig = {
        stats: { modules: false },
        context: __dirname,
        resolve: { extensions: [ '.js', '.ts' ] },
        output: {
            filename: '[name].js',
            publicPath: 'dist/' // Webpack dev middleware, if enabled, handles requests for this URL prefix
        },
        module: {
            rules: [
                { test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/, include: [/ClientApp/, /\$\$_gendir/], use: isDevBuild ? ['awesome-typescript-loader?silent=true', 'angular2-template-loader'] : '@ngtools/webpack' },
                { test: /\.html$/, use: 'html-loader?minimize=false' },
                { test: /\.css$/, use: [ 'to-string-loader', isDevBuild ? 'css-loader' : 'css-loader?minimize' ] },
                { test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' },
                {
                    test: /\.scss$(\?|$)/,
                    exclude: /node_modules/,
                    use: extractCSS.extract({
                        use: [{
                            loader: "to-string-loader"
                        }, {
                            loader: isDevBuild ? 'css-loader' : 'css-loader?minimize', options: {
                                sourceMap: true
                            }
                        }, {
                            loader: 'sass-loader', options: {
                                sourceMap: true
                            }
                        }] })
                }
            ]
        },
        plugins: [     
            extractCSS,
            new CheckerPlugin()]
    };

    // Configuration for client-side bundle suitable for running in browsers
    const clientBundleOutputDir = './wwwroot/dist';
    const clientBundleConfig = merge(sharedConfig, {
        entry: { 'main-client': './ClientApp/boot.browser.ts' },
        output: { path: path.join(__dirname, clientBundleOutputDir) },
        plugins: [
            new webpack.DllReferencePlugin({
                context: __dirname,
                manifest: require('./wwwroot/dist/vendor-manifest.json')
            })
        ].concat(isDevBuild ? [
            // Plugins that apply in development builds only
            new webpack.SourceMapDevToolPlugin({
                filename: '[file].map', // Remove this line if you prefer inline source maps
                moduleFilenameTemplate: path.relative(clientBundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
            })
        ] : [
            // Plugins that apply in production builds only
            new webpack.optimize.UglifyJsPlugin(),
            new AotPlugin({
                tsConfigPath: './tsconfig.json',
                entryModule: path.join(__dirname, 'ClientApp/app/app.module.browser#AppModule'),
                exclude: ['./**/*.server.ts']
            })
        ])
    });
    return [clientBundleConfig];
};

1 Ответ

0 голосов
/ 04 мая 2018

Возможность воссоздать ваш сценарий, используя упомянутое вами правило scss:

Ваше правило:

 {
                    test: /\.scss$(\?|$)/,
                    exclude: /node_modules/,
                    use: extractCSS.extract({   
                        use:[ {loader: 'to-string-loader'},
                        {
                            loader: true ? 'css-loader' : 'css-loader?minimize', options: {
                                sourceMap: true
                            }
                        }, {
                            loader: 'sass-loader', options: {
                                sourceMap: true,
                            }
                        }] }
                      )
                }

app.css.map:

{"version":3,"sources":[],"names":[],"mappings":"","file":"app.css","sourceRoot":"webpack:///"}

Удалив загрузчик to-string для scss, я добился цели !!!

Измененное правило:

{
                    test: /\.scss$(\?|$)/,
                    exclude: /node_modules/,
                    use: extractCSS.extract({   
                        use: [
                        {
                            loader: true ? 'css-loader' : 'css-loader?minimize', options: {
                                sourceMap: true
                            }
                        }, {
                            loader: 'sass-loader', options: {
                                sourceMap: true,
                            }
                        }] }
                      )
                }

решено app.css.map

{"version":3,"sources":["./src/assets/css/src/assets/css/app.scss"],"names":[],"mappings":"AAAA;EACI,uBAAsB,EACzB","file":"app.css","sourcesContent":[".ampati{\n    background-color: blue;\n}\n\n.hareesh{\n    @extend .ampati;\n}\n\n\n// WEBPACK FOOTER //\n// ./src/assets/css/src/assets/css/app.scss"],"sourceRoot":"webpack:///"}

Плагин - это то же самое, что вы использовали [ExtractTextPlugin] и SourceMapDevToolPlugin, сохраненные как есть в списке плагинов (из ng eject) , Я считаю, что это в основном решит проблему, с которой вы столкнулись !!

Надеюсь, это поможет !!! Если нет, укажите git url своей базы кода

Ссылка: https://github.com/webpack-contrib/sass-loader/issues/309

...