Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@justeat/f-build-js

Package Overview
Dependencies
Maintainers
22
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeat/f-build-js

Fozzie Build configuration for JS components

  • 0.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
22
Weekly downloads
 
Created
Source

f-build-js

Fozzie Bear

Webpack configuration for JS Builds


npm version Build Status Coverage Status Known Vulnerabilities


Quick Guide

README To Be Written

Overriding default configuration

f-build-js is setup with a bunch of sensible defaults that the majority of projects will be able to use out of the box.

However, should you wish to adjust the config of any part of webpack config, you can hook into the rules and merge/override them with your own configuration using the hooks in webpack-chain.

For example, say you wanted to change the name of the JS file being produced from the default entrypoint, you would do so in the following way:

const webpackConfig = require('@justeat/f-build-js');

webpackConfig
    .output
        .path(__dirname)
        .filename('testName.js');

For overwriting or adding options within a loaders configuration you will need to use these hooks combined with the babel-merge package.

One example would be if you wanted to override the default behaviour of the ESLint rule to turn off auto-fixing. You could do this by declaring the following in your webpack.config.js:

const webpackConfig = require('@justeat/f-build-js');
const merge = require('babel-merge');

webpackConfig.module
    .rule('jsLinting')
        .use('eslint')
            .tap(options => merge(options, {
                fix: false // turn off autofix
            }));

module.exports = webpackConfig.toConfig();

A full list of the named rules and loaders you can hook into are listed below.

Rules

TODO

Keywords

FAQs

Package last updated on 17 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc