npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

@moped/rule-file

0.0.9

@forbeslindesay

npmRepoSnykSocket
Downloads:4
$ npm install @moped/rule-file
DailyWeeklyMonthlyYearly

rule-css

This module provides a sensible rule for handling arbitrary files in webpack apps. It is part of the moped suite of utilities for creating composable configs for building node.js and react apps.

When you import a file using this package, you get the url of that file.

Installation

yarn add --dev @moped/rule-file

Usage

const createFileRule = require('@moped/rule-file');

module.exports = {
  entry: __dirname + '/src/index.js',
  output: {
    path: __dirname + '/build',
    filename: 'index.js',
    publicPath: '/',
  },
  module: {
    rules: [createFileRule()],
  },
};

Licence

MIT