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

lila-webpack-config

v1.0.2

Published

built-in webpack config generator for lila-webpack

Downloads

29

Readme

lila-webpack-config

中文文档

Built-in webpack config generator for lila-webpack.

install

npm install --save-dev lila-webpack-config

use

In lila.init.js:

import webpackPlugin from 'lila-webpack';
import webpackConfigPlugin, {
  forReact as reactWebpackConfigPlugin,
  forVue as vueWebpackConfigPlugin,
  forReactVue as reactVueWebpackConfigPlugin,
} from 'lila-webpack-config';

export default lila => {
  webpackPlugin(lila);
  webpackConfigPlugin(lila);                // for normal project
  // reactWebpackConfigPlugin(lila);        // for react project
  // vueWebpackConfigPlugin(lila);          // for vue project
  // reactVueWebpackConfigPlugin(lila);     // React + Vue project

  ...
};

extended configs

babelExclude: babel-loader exclude

type: [] default: [/node_modules/]

babelPresets: extra babel presets

type: [] default: []

Lila provided following presets internally:

  1. for .{js,vue} files:
  • @babel/preset-env
  • @babel/preset-flow
  1. for .jsx files:
  • @babel/preset-env
  • @babel/preset-flow
  • @babel/preset-react

babelPlugins: extra babel plugins

type: [] default: []

Lila provided following plugins internally:

  1. for .js files:
  • @babel/plugin-syntax-dynamic-import
  • @babel/plugin-proposal-class-properties
  • @babel/plugin-transform-runtime
  1. for .jsx files:
  • @babel/plugin-syntax-dynamic-import
  • @babel/plugin-proposal-class-properties
  • @babel/plugin-transform-runtime
  • @babel/plugin-transform-react-jsx
  1. for .vue files:
  • @babel/plugin-syntax-dynamic-import
  • @babel/plugin-proposal-class-properties
  • @babel/plugin-transform-runtime
  • babel-plugin-transform-vue-jsx

extensions: url-loader file extensions

type: [] default: ['jpg', 'jpeg', 'png', 'gif', 'ico', 'svg', 'eot', 'ttf', 'woff', 'woff2']

provide: ProvidePlugin config

type: {} default: {}

define: DefinePlugin config

type: {} default: {}

alias: resolve-alias config

type: {} default: {}

cssModules: whether to use css-modules

type: bool default: false

cssModulesName: css-loader#localidentname

type: string

cssModulesExclude: css-loader css-modules exclude

type: [] default: [/node_modules/]

browsers: autoprefixer browsers

type: []

default:

[
  '> 1%',
  'last 2 versions',
  'Android >= 3.2',
  'Firefox >= 20',
  'iOS 7',
]

staticServer: a static server to place bundle resources to

type: string default: empty string

  • /dir: a directory
  • http://www.static.com: a standalone static server
  • https://www.static.com/dir: a sub directory of a standalone static server
  • //www.static.com/dir/sub_dir: another sub directory of a standalone static server

minHtml: whether minify html

type: bool default: true

minHtmlOptions: html-minifier config

type: {}

default:

{
  removeComments: !0,
  collapseWhitespace: !0,
  collapseBooleanAttributes: !0,
  removeEmptyAttributes: !0,
  removeScriptTypeAttributes: !0,
  removeStyleLinkTypeAttributes: !0,
  removeRedundantAttributes: !0,
  minifyJS: !0,
  minifyCSS: !0,
}

minCss: whether minify css

type: bool default: true

minJs: whether minify js

type: bool default: true

devtool: devtool config

type: string

default:

  • cmd: dev, serve: eval-source-map
  • cmd: build, sync, start: source-map

splitChunks: SplitChunksPlugin config

type: {} default: {chunks: 'all'}

sassResources: sass-resources-loader resources option

Available version >= v1.0.2

type: string/array

extra: extra webpack config options

type: {}/function default: {}

extra: { ... }
extra: webpack => ({ ... })

rules: extra webpack rules

type: [] default: []

plugins: extra webpack plugins

type: [] default: []

rebuildWebpackConfig: rebuild webpack config when you want more handling of webpack config

type: function

({ webpackConfig, lila, webpack, entry, cmd, config, argv }) => newWebpackConfig;

files of an entry

An entry has a standalone directory(src/home/about/ if entry is home/about), also called workspace, and has at least a index.html file and a index.js file under the workspace.

If entry is not provided, @lila/index will be used as default.

If entry is @lila/index, its workspace is src:

- src/
  - index.html
  - index.js

  - other files and directories

Others(entry is home/about), its workspace is src/home/about:

- src/
  - home/
    - about/
      - index.html
      - index.js

      - other files and directories

It's recommended to place all files of an entry to its workspace.

built-in rules

file extensions

  • .js: pure JavaScript code
  • .jsx: React component code
  • .vue: Vue component code