npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@trinitymirrordigital/webpack-config

v6.0.6-alpha.0

Published

> TODO: description

Downloads

47

Readme

@trinitymirrordigital/webpack-config

Standard Webpack setup for all dragonfly projects.

Includes set up for:

Install

yarn add -D @trinitymirrordigital/webpack-config @trinitymirrordigital/dragonfly-find-files webpack-merge webpack-config-utils

Usage

First create a config.yml with the following data (adjusting as necessary)

You can add anything you want into the config file and it will be returned to you in config object with the webpack default setup. Just be aware that any snake_case will be converted to camelCase.

Below are the list of expected options:

| Option | default | Example | | :----------------------- | :------------ | :------------------------------------------------------------------------------------------------------------------------- | | context | 'src' | base directory see here for details | | devServer | {} | setup for webpack dev sever | | public_output_path | N/A(required) | output directory see here | | public_dev_output | N/A(required) | Required to path assets correctly for dev see here | | public_root_output | N/A(required) | Required to path assets correctly for production see here | | extensions | N/A | List of file types to process see here | | static_assets_extensions | N/A | List of static file types to process like images or fonts | | caching_hash | false | whether assets are outputed with caching hash e.g '[name].[hash:8].js' or '[name].js' | | additional_alias | N/A | list of aliased modules see here | | exclude_HTML_assets | N/A | excludes assets in a html file from processing as regexps see here |

Dragonfly set-up example

For config.yml:

default: &default
  public_output_path: 'target/build' # output path
  additional_alias: # Alias for other modules in chameleon-fe otherwise webpack will throw error
    '@trinitymirrordigital/marwood': false
    '@trinitymirrordigital/chameleon-core': false
    '/@trinitymirrordigital/chameleon-core': false
    '@trinitymirrordigital/chameleon-utilities': false
    '/@trinitymirrordigital/chameleon-utilities': false
    '/@trinitymirrordigital/article-service': false
  context: src # root folder for files
  # For finding entry points
  search_pug: 'src/**/*.pug'
  search_scss: 'src/**/!(_)*.scss'
  search_js: 'src/**/*!(.spec).js'
  # Required for production
  asset_properties: 'target/build/assets.properties'
  # Name of dev output (pugs)
  dev_folder: 'dev'
  # Sets default path for dev server
  path_alias: /@DRAGONFLY_STATIC@
  repo_name: 'dragonfly'
  # For output of pug templates for production
  template_folder: 'template'

  static_assets_extensions:
    - .jpg
    - .jpeg
    - .png
    - .gif
    - .tiff
    - .ico
    - .svg
    - .eot
    - .otf
    - .ttf
    - .woff
    - .woff2

  extensions:
    - .mjs
    - .js
    - .js.map
    - .sass
    - .scss
    - .css
    - .css.map
    - .module.sass
    - .module.scss
    - .module.css
    - .pug

development:
  <<: *default
  # Add development specific config here

production:
  <<: *default
  # Add production specific config here

Create in your project a webpack.config.js file then add the following:

const webpackConfig = require('@trinitymirrordigital/webpack-config');
const fileList = require('@trinitymirrordigital/dragonfly-find-files');
const { merge } = require('webpack-merge');
const { getIfUtils } = require('webpack-config-utils');

module.exports = async (env, args) => {
  // Gets standard set up - see https://bitbucket.org/trinitymirror-ondemand/dragonfly-build-tools/src/master/packages/webpack-config/
  const { webpackConfig, config } = await getWebpackConfig(env, args);
  const { assetProperties, context, devFolder, repoName } = config;

  // for production
  const { VERSION } = process.env;
  const version = VERSION || devFolder;
  // Gets entry points see https://bitbucket.org/trinitymirror-ondemand/dragonfly-build-tools/src/master/packages/dragonfly-find-files/
  const { entry } = await fileList(config, version, context, args.mode);
  // For production build
  const { ifProduction } = getIfUtils(env);
  const wc = ifProduction(
    {
      context: resolve(context),
      entry,
      plugins: [
        // add some production specific plugins here ...
      ],
    },
    // Development specific config here
    {
      context: resolve(context),
      entry: { ...entry, 'webpack-hot-middleware/client': 'webpack-hot-middleware/client?reload=true' },
    },
  );
  // merges with default setup
  return merge(webpackConfig, wc);
};

then in package.json add the following:

"scripts": {
  "build": "yarn webpack",
  "webpack": "YAML_CONFIG=webpack/config.yml webpack --config webpack"
},

Cue-web example set-up:

For config.yml

default: &default
  additional_alias: # Alias for other modules
    './Configuration/cue.config.js': false
  exclude_HTML_assets: # Removes assets from cue index.html from webpack processing
    - 'Images/.*'
    - 'Configuration'
    - 'scripts.(.*).js'
    - 'polyfills.(.*).js'
    - 'runtime.(.*).js'
    - 'styles.(.*).css'
    - 'vendor.(.*).js'
    - 'main.(.*).js'
  public_dev_output: https://localhost/webpack/ #path set through proxy
  public_output_path: ./dist # output path
  public_root_path: /cue-web/dist/ # production publicPath
  # Sets up static assets
  static_assets_extensions:
    - .jpg
    - .jpeg
    - .png
    - .gif
    - .tiff
    - .ico
    - .svg
    - .eot
    - .otf
    - .ttf
    - .woff
    - .woff2
  # for resolve assets
  extensions:
    - .mjs
    - .js
    - .jsx
    - .ts
    - .tsx
    - .sass
    - .scss
    - .css
    - .module.sass
    - .module.scss
    - .module.css
    - .png
    - .svg
    - .gif
    - .ico
    - .jpeg
    - .jpg

  source_path: assets # where to find entry points

  ###### for html-webpack-plugin #######
  html_output: '../index.html' # Where cue html is outputted
  html_template: './assets/index.html' # Where to get default cue-html

  ####### For @trinitymirrordigital/ cue-webpack-google-tag-manager-plugin #######
  google_tag_id: GTM-PXC7ST9

  ###### for @trinitymirrordigital/cue-templates-plugin ####
  templates_path: template # Where template code are
  cue_url: https://localhost # dev path for assets
  yaml_output: /etc/escenic/cue-web # where the yaml files are outputted in docker image
  start_up_script: /usr/bin/startup.sh # startup script fired when dev-server starts for @trinitymirrordigital/cue-templates-plugin

development:
  <<: *default
  # Extract and emit a css file
  caching_hash: false # disables cache-busting Hash
  # Reference: https://webpack.js.org/configuration/dev-server/
  dev_server:
    https: false
    http2: false
    host: 0.0.0.0
    hot: true
    port: 3131
    headers:
      Access-Control-Allow-Origin: '*'
      Access-Control-Allow-Methods: 'GET, POST, PUT, DELETE, PATCH, OPTIONS'
      Access-Control-Allow-Headers: 'X-Requested-With, content-type, Authorization'
    static:
      watch:
        aggregate_timeout: 300
        ignored: '**/node_modules/**'
        poll: 1000

production:
  <<: *default
  caching_hash: true # enables cache-busting Hash

For the webpack config:

/* eslint-env node */
const { TemplatePlugin, getFiles } = require('@trinitymirrordigital/cue-templates-plugin');
const webpackSetup = require('@trinitymirrordigital/webpack-config');
const GoogleTagManagerPlugin = require('@trinitymirrordigital/cue-webpack-google-tag-manager-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
const { merge } = require('webpack-merge');
const { resolve } = require('path');
const webpack = require('webpack');

module.exports = async (env, argv) => {
  const { webpackConfig, config } = await webpackSetup(env, argv);

  const { cueUrl, googleTagId, htmlOutput, htmlTemplate, publicDevOutput, publicOutputPath, publicRootPath, startUpScript, yamlOutput } = config;

  const files = getFiles(config);
  const publicPath = env.development ? publicDevOutput : publicOutputPath;
  return merge(webpackConfig, {
    // stats: 'normal',
    entry: {
      index: resolve('assets/index.js'),
      ...files,
    },
    output: {
      path: resolve(__dirname, '../', 'dist'),
    },
    plugins: [
      new webpack.DefinePlugin({
        VERSION: JSON.stringify(new Date().getTime()),
        ENVIRONMENT: JSON.stringify(argv.mode),
      }),
      new TemplatePlugin({
        cueUrl,
        mode: argv.mode,
        js: publicRootPath,
        publicPath,
        output: yamlOutput,
        shellScript: startUpScript,
      }),
      new HtmlWebpackPlugin({
        filename: htmlOutput,
        alwaysWriteToDisk: true,
        template: resolve(htmlTemplate),
        excludeChunks: Object.keys(files),
        inject: 'body',
        options: {
          minimize: false, //! env.development,
        },
      }),
      // Adds google tag manger to index.html
      new GoogleTagManagerPlugin({
        id: googleTagId,
      }),
      new HtmlWebpackHarddiskPlugin(),
    ],
  });
};

Webpack loaders

A list of loaders included in standard config:

Webpack plugins

A list of plugins included in standard config:

Webpack minimizers (In production only)

A list of minimizers included in standard config:

Copyright (c) 2022 "Reach Shared Services Ltd"