Giter Club home page Giter Club logo

aunty-pl's Introduction

@abcnews/aunty-pl

Tools to extend @abcnews/aunty for Presentation Layer

Prerequisites

  1. Install this package into your react aunty project as a development dependency
npm install -D @abcnews/aunty-pl
  1. Create (or update) your aunty.config.js file so that it contains at a minimum:
module.exports = {
  type: 'react',
  webpack: config => {
    return config;
  }
};

If you had to create the file above, remember to delete the now-redundant aunty property from your package.json file.

Usage

To enable aunty to build projects that depend on @abcaustralia/* component libraries, import the applyWebpackRules utility from this package into your aunty.config.js, and call it with your Webpack config object:

const { applyWebpackRules } = require('@abcnews/aunty-pl');

module.exports = {
  type: 'react',
  webpack: config => {
    applyWebpackRules(config);

    return config;
  }
};

The effects of applying this update are:

  • The existing Webpack rule that handles .css / .scss files excludes the @abcaustralia package namespace.
  • A new rule is added specifically for handling .css files under the @abcaustralia package namespace, which applies, in order:
    1. their postcss-loader
    2. our css-loader with their options (they use CSS modules)
    3. our last loader, which will either be MiniCssExtractPlugin's loader or style-loader (default), depending on whether our project is configured to extract CSS into separate assets or not.

aunty-pl's People

Contributors

colingourlay avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.