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

@rubixibuc/build-scripts

v0.40.0

Published

Batteries included webpack + module federation build and linting scripts

Downloads

77

Readme

build-scripts

Batteries included webpack + module federation build and linting scripts

Quick Start

  • create ./src/bootstrap.js entry file
  • add optional configuration
  • run directly
    npx @rubixibuc/build-scripts run
    or install globally
    npm i -g @rubixibuc/build-scripts
    build-scripts run

Usage

  • create ./src/bootstrap.js entry file
  • add optional configuration
  • add dependency to project
    npm i -D @rubixibuc/build-scripts
  • add start and build scripts to package.json
    {
      "scripts": {
        "start": "build-scripts run",
        "build": "build-scripts build"
      }
    }

CLI

  • build Outputs production build to ./dist folder
    build-scripts build
  • eslint Runs eslint against project files
    build-scripts eslint [-f, --fix] [-c, --cache] [-mw, --max-warnings <max-warnings>] <paths/globs>
  • prettier Runs prettier against project files
    build-scripts prettier [-f, --fix] <paths/globs>
  • run Runs dev server if specified, command line port overrides setting from config
    build-scripts run [-p, --port <port>]
  • stylelint Runs stylelint against project files
    build-scripts stylelint [-f, --fix] [-cs, --custom-syntax <custom-syntax>] [-mw, --max-warnings <max-warnings>] <paths/globs>

Configuration

  • example + defaults build-scripts.config.js configuration formats
    // importing from separate files is a recommended pattern
    module.exports = {
      // app meta
      background: "#fff",
      // copy all files inside public folder to output destination folder
      // undefined = autodetect (copy files if public folder exists)
      // false = disable public folder copy
      // true = force public folder copy
      copy: void 0,
      // module federation exposed paths
      exposes: {},
      // link tags [1]
      links: [],
      // favicons (all sizes generated)
      // undefined = "<included image>"
      logo: void 0,
      // meta tags [1]
      metas: [],
      // obfuscator options [2]
      // false = disabled
      // {} = options
      obfuscator: false,
      // import web polyfills
      // {} = custom polyfill configuration
      // false = no polyfills
      // undefined = include all polyfills
      polyfill: {
        // imports both "core-js/stable" and "regenerator-runtime/runtime"
        // import "@rubixibuc/build-scripts/polyfill/browser" to add manually
        // true = browser polyfill
        // false = no browser polyfill
        browser: true,
        // imports both "@webcomponents/webcomponentsjs" and "construct-style-sheets-polyfil"
        // import "@rubixibuc/build-scripts/polyfill/component" to add manually
        // true = component polyfill
        // false = no component polyfill
        component: true,
      },
      // webpack dev server port
      port: 8080,
      // import src/preboot.(tsx|ts|jsx|js) before async bootstrap
      // undefined = autodetect (import preboot.* file if it exists)
      // false = ignore preboot.* file
      // true = force import
      preboot: void 0,
      // module federation remotes
      remotes: {},
      // script tags [1]
      scripts: [],
      // module federation shared modules
      shared: {},
      // tailwindcss configuration [3]
      // tailwindcss utility classes are automatically prefixed with varName below
      // false = no tailwindcss
      // {} = tailwindcss configuration
      tailwindcss: false,
      // app meta
      themeColor: "#fff",
      // site title
      title: "My App",
      // module federation var name
      varName: "myapp",
    };
  • example .lintstagedrc.json
    {
      "*.js": "build-scripts eslint --cache --fix",
      "*.css": "build-scripts stylelint --fix",
      "*.{json,md}": "build-scripts prettier --fix"
    }

Javascript Variants

  • *.js
  • *.jsx
  • *.ts (transpiles, but doesn't do build time typechecking)
  • *.tsx (transpiles, but doesn't do build time typechecking)

Importing Assets

  • All asset types are supported according to the following rules
    // exp === "data:[...]"
    import exp from "./some-asset.png?data";
    // exp === "[...]/some-asset.1234.png?file"
    import exp from "./some-asset.png?file";
    // exp === "contents of file"
    import exp from "./some-asset.txt?source";
  • Specific rules for *.css imports
    // exp === new CSSStyleSheet()
    // https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet
    import exp from "./some-style.css";
    // exp === "processed css as string"
    import exp from "./some-style.css?string";
    // load style
    import "./some-style.css?style";
  • Additional rule for creating webp formatted images
    // exp === "[...]/some-image.1234.webp"
    import exp from "./some-image.png?file&as=webp";