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

metalsmith-assets-improved

v1.0.1

Published

Include static assets in a Metalsmith build

Downloads

789

Readme

Assets Improved

Assets Improved is Metalsmith plugin for handling static assets, such as images and CSS files. It is a replacement for plugins such as "Metalsmith Assets" and "Metalsmith Static", although it has an API different from those plugins.

Usage

When building a Metalsmith project, you have a directory that contains your package.json file, a source directory, and an output directory. This documentation refers to this directory as "the Metalsmith project directory" or "the Metalsmith root." The Metalsmith root directory is represented in code samples as __dirname.

Assets Improved is used like any other Metalsmith plugin, for example:

let assets = require( 'metalsmith-assets-improved' );
let Metalsmith = require( 'metalsmith' );

Metalsmith( __dirname )
    .use( assets() )
    .build( function( err ) {
        if ( err ) return done( err );
    } );

By default, Assets Improved looks in __dirname/assets for static assets. These assets will be copied to the output or build folder, which is __dirname/build by default. If you change the output directory with the the destination function, then the assets will be copied to that directory.

Configuration

Like any other Metalsmith plugin, you can override the default behavior by passing a configuration object to the assets function, like so:

Metalsmith( __dirname )
    .use( assets( {
        src: 'static',
        dest: 'static',
        replace: 'old'
    } ) )
    .build( function( err ) {
        if ( err ) return done( err );
    } );

As shown in the example above, the configuration object has three fields. All of them are optional.

  • src: Directory to copy files from. Relative paths are resolved against the Metalsmith project directory (i.e. src can be a sibling to the directory used as Metalsmith's source). Defaults to __dirname/assets.
  • dest: Directory to copy files to. Relative paths are resolved against the directory configured via's Metalsmith destination function. Defaults to . (i.e. the same as destination).
  • replace: Which, if any, files in the dest folder should be overwritten during the build process. Possible values are:
    • 'all' (all files will be overwritten)
    • 'old' (files in dest older than their counterparts in src will be overwritten)
    • 'none' (no files in dest will be overwritten, but files in src without a counterpart will be copied to dest; default)

It is highly recommended to set metalsmith.clean(false) if you are using the replace option. Otherwise, Metalsmith will delete all of your old build files each time it runs, which makes the replace option pretty pointless.

License

The content of this repository is licensed under the 3-Clause BSD license. Please see the enclosed license file for specific terms.