HOME


sh-3ll 1.0
DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/laravel-mix/src/components/
Upload File :
Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/laravel-mix/src/components/Coffee.js
let JavaScript = require('./JavaScript');

class Coffee extends JavaScript {
    /**
     * Required dependencies for the component.
     */
    dependencies() {
        return ['coffee-loader', 'coffeescript'].concat();
    }

    /**
     * webpack rules to be appended to the master config.
     */
    webpackRules() {
        return [
            {
                test: /\.coffee$/,
                use: ['coffee-loader']
            }
        ].concat(super.webpackRules());
    }
}

module.exports = Coffee;