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

@alleyinteractive/build-tool

v0.1.4

Published

An opinionated set of build configurations for wp-scripts

Downloads

262

Readme

Alley Build Tool

The Alley Build Tool is an opinionated webpack build configuration that is an extension of the WordPress Scripts package. It is designed to be used for WordPress development with minimal configuration.

Features

The primary features of the Alley Build Tool are:

  • Minimal configuration.
  • Separate source directories for blocks, slotfills, and entry points.
  • Entry points are compiled into separate directories in the output.

Installation

npm install @alleyinteractive/build-tool --save-dev

Usage

This package offers a command-line interface and exposes a binary, alley-build so you can call it directly with npx – an npm package runner. However, this module is designed to be configured using the scripts section in the package.json file of your project.

The Alley Build Tool functions as a wrapper for wp-scripts and exposes all the possible commands that wp-scripts offers. The only difference is that the Alley Build Tool will run the wp-scripts command with the --config flag and point it to the Alley Build Tool's custom webpack configuration file when running the build and start commands.

Example:

{
  "scripts": {
    "build": "alley-build build",
    "start": "alley-build start",
    "start:hot": "alley-build start --hot"
  }
}

Because wp-scripts is a dependency of @alleyinteractive/build-tool, you can also run wp-scripts commands such as packages-update from the scripts configuration in your package.json file. Because @alleyinteractive/build-tool calls wp-scripts directly it can also run any wp-scripts command as a wrapper.

Example:

{
  "scripts": {
    "packages-update": "alley-build packages-update --dist-tag=wp-6.3",
  }
}

or directly in the command line:

npx alley-build packages-update --dist-tag=wp-6.3

Default options

By default the following command options are applied when running the build and start commands:

  • --webpack-copy-php – enables copying all PHP files from the blocks directory and its subdirectories to the output directory.
  • --webpack-src-dir – Allows customization of the blocks source code directory. Default is blocks.

Additional CLI options

  • --webpack-entries-dir <string> - The directory where wp-scripts will detect entry point directories that are not blocks. These entries can be slotfills or webpack entry points (Default: entries)
  • --webpack-blocks-only - This option will disable the entries directory and only compile blocks set in the blocks directory. This is useful for projects that do not use slotfills or separate entry points.

Fast refresh in the block editor

By running the alley-build start --hot command this enables “Fast Refresh” in the block editor!

See the start command documentation for more information.

For fast refresh to work it requires that WordPress has the SCRIPT_DEBUG flag enabled and the Gutenberg plugin installed.

Extending the config

Extending the Alley Build Tool webpack configuration is possible by providing a webpack.config.js file in the root directory of your project. The Alley Build Tool will look for this file and use it to extend the default configuration.

Example:

// webpack.config.js
const config = {
  output: {
    asyncChunks: true,
  },
  resolve: {
    alias: {
      // Adding a custom alias for file path resolution.
      '@': 'path/to/some/folder',
    },
  },
};

module.exports = config;

The Alley Build Tool will deep merge the provided configuration with the default configuration. The webpack.config.js file must use the standard webpack configuration format. You can override configurations from the extended configuration by passing the same property in the configuration that extends it.

Important: The Alley Build Tool will not deeply merge all webpack configuration options. For example, if you are adding additional entry points or adding plugins to the plugins array you will need to extend the default configuration using the spread operator. This is because adding entries or plugins to the configuration will override the default configuration resulting in the loss of the WP Scripts and Alley Build Tool configurations.

Using the spread operator to extend the default configuration

It is also possible to import the default extend the default configuration using the spread operator.

The following config files are available for import with these paths:

  • @alleyinteractive/build-tool/dist/cjs/config/webpack.config - CommonJS
  • @alleyinteractive/build-tool/dist/esm/config/webpack.config - ESM

Example of extending the default configuration using the spread operator:

// webpack.config.js
const path = require('path');
const defaultConfig = require('@alleyinteractive/build-tool/dist/cjs/config/webpack.config');

/**
 * Extend the default entry configuration to add a custom entry point.
 */
module.exports = {
  entry: {
    // The entry is a function that returns the default entry object.
    ...defaultConfig.default.entry(),
    'my-entry': path.resolve(__dirname, 'path/to/entry.js'),
  },
};

NOTE: To use ESM import syntax use the following import path:

import defaultConfig from '@alleyinteractive/build-tool/dist/esm/config/webpack.config';

Using Webpack extends property

Similar to the spread operator, you can also use the extends property in the webpack.config.js file to extend the default configuration.

The extends property allows you to extend an existing configuration to use as the base. It internally uses the webpack-merge package to merge the configurations and helps you to avoid duplicating configurations. -- See the webpack extending configurations documentation for more information.

NOTE: The extends property is only available in webpack v5.82.0 and later.

Example of extending the default configuration using the extends property:

// webpack.config.js
const config = {
  extends: require.resolve('@alleyinteractive/build-tool/dist/cjs/config/webpack.config'),
  output: {
    asyncChunks: true,
  },
  resolve: {
    alias: {
      // Adding a custom alias for file path resolution.
      '@': 'path/to/some/folder',
    },
  },
};

If you need to add entry points or plugins to the configuration, you will still need to use the spread operator to extend the default configuration.

From Source

To work on this repository:

git clone [email protected]:alleyinteractive/alley-scripts.git
cd packages/build-tool
npm install
npm link

In order to test the build-tool with another project, you will need to point to this package, e.g.:

{
  "scripts": {
    "build": "alley-build build",
    "start": "alley-build start"
  },
  "devDependences": {
    "@alleyinteractive/build-tool": "file:../path/to/alley-scripts/packages/build-tool/index.js"
  }
}

Then run npm link ../path/to/alley-scripts/packages/build-tool and npm will symlink to this folder, and you can work on your changes.

Changelog

This project keeps a changelog.

Development Process

See instructions above on installing from source. Pull requests are welcome from the community and will be considered for inclusion. Releases follow semantic versioning and are shipped on an as-needed basis.

Contributing

See our contributor guidelines for instructions on how to contribute to this open source project.

Related Efforts

Maintainers

Alley logo

Contributors

Thanks to all of the contributors to this project.

License

This project is licensed under the GNU Public License (GPL) version 2 or later.