Skip to content

Commit

Permalink
Merge branch 'release/2.5.x' into feature/#259-debug-method
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed May 17, 2022
2 parents c68c71d + 2666846 commit a753b51
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ This project adheres to [Semantic Versioning](http://semver.org).

This document follows the guidelines of [Keep A Changelog](http://keepachangelog.com).

## [2.4.3] - 2022-05-16

### Updated

- **Dependencies:** [`774a164`](https://github.com/metalsmith/metalsmith/commit/774a164)
- `micromatch`: 4.0.4 ▶︎ 4.0.5
- Updated README.md

### Fixed

- Fixes repeat `metalsmith.match` file cache in repeat runs without re-read, see https://github.com/metalsmith/layouts/issues/183 [`a727309`](https://github.com/metalsmith/metalsmith/commit/a727309)

## [2.4.2] - 2022-02-13

### Updated
Expand Down
2 changes: 2 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,8 @@ Metalsmith.prototype.run = function (files, plugins, callback) {
callback = isFunction(last) ? last : undefined
plugins = Array.isArray(plugins) ? plugins : this.plugins

this._files = files

const ware = new Ware(plugins)
const run = ware.run.bind(ware)

Expand Down
22 changes: 15 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metalsmith",
"version": "2.4.2",
"version": "2.4.3",
"description": "An extremely simple, pluggable static site generator.",
"keywords": [
"static",
Expand Down Expand Up @@ -60,7 +60,7 @@
"debug": "^4.3.3",
"gray-matter": "^4.0.3",
"is-utf8": "~0.2.0",
"micromatch": "^4.0.4",
"micromatch": "^4.0.5",
"rimraf": "^3.0.2",
"stat-mode": "^1.0.0",
"ware": "^1.3.0"
Expand Down

0 comments on commit a753b51

Please sign in to comment.