GithubHelp home page GithubHelp logo

webpack-config's Introduction

webpack-config

This repository contains configuration that can be shared between applications using webpack for bundling.

The configuration consists of smaller functions that can be composed together and then customized per function based on the exact need. There are also specific merge functions that you should use to combine the fragments together.

Installation

Currently the package is provided as compiled source through GitHub. To use it, first add it to your package.json devDependencies as follows:

"@pmedianetwork/webpack-config": "github:pmedianetwork/webpack-config#v1.2.3",

Please adjust the version tag to match the version you want. Note the v prefix!

The package includes a basic Babel and ESLint configuration (only webpack specific rules).

Babel

To consume Babel, set up .babelrc at the project root as follows:

{
  "extends": "@pmedianetwork/webpack-config/.babelrc"
}

It's worth checking out the file within webpack-config package to see what exactly is included. You'll notice it's handling @babel/preset-env, @babel/preset-react, custom features used by the projects, and HMR (react-hot-loader).

ESLint

For ESLint, extend your .eslintrc like this:

{
  "extends": ["./node_modules/@pmedianetwork/webpack-config/eslint-defaults"]
}

Doing this will fix import related linting rules to take webpack configuration into account.

Browserslist

browserslist is a standard that defines the minimum versions of browsers where the project should work. The information is useful for tooling as it can then generate optimized code and avoid using legacy features unless they are needed.

When @pmedianetwork/webpack-config is installed, it's going to copy .browserslist file included within the package to the project where it was installed.

Development

The project has been written in TypeScript. Each part of configuration is a small function that has type annotations.

When you want to publish changes, run npm version <patch|minor|major> depending on the type of the change as per SemVer. Doing this will compile the project (see dist/) and tag the project. Remember to push the tags to GitHub using git push --follow-tags.

webpack-config's People

Contributors

bebraw avatar tkdodo 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.