├── .gitignore ├── Readme.md ├── lib └── index.js ├── package.json └── test ├── fixtures ├── basic-changenames-async │ ├── expected │ │ ├── index.php │ │ └── nested │ │ │ └── index.php │ └── src │ │ ├── index.md │ │ └── nested │ │ └── index.md ├── basic-changenames │ ├── expected │ │ ├── index.php │ │ └── nested │ │ │ └── index.php │ └── src │ │ ├── index.md │ │ └── nested │ │ └── index.md ├── basic-timeout │ ├── expected │ │ ├── index.md │ │ └── nested │ │ │ └── index.md │ └── src │ │ ├── index.md │ │ └── nested │ │ └── index.md ├── basic │ ├── expected │ │ ├── index.md │ │ └── nested │ │ │ └── index.md │ └── src │ │ ├── index.md │ │ └── nested │ │ └── index.md └── empty │ └── src │ └── .gitkeep └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/build/ 3 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic-changenames-async/expected/index.php: -------------------------------------------------------------------------------- 1 | body -------------------------------------------------------------------------------- /test/fixtures/basic-changenames-async/expected/nested/index.php: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic-changenames-async/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/test/fixtures/basic-changenames-async/src/index.md -------------------------------------------------------------------------------- /test/fixtures/basic-changenames-async/src/nested/index.md: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic-changenames/expected/index.php: -------------------------------------------------------------------------------- 1 | body -------------------------------------------------------------------------------- /test/fixtures/basic-changenames/expected/nested/index.php: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic-changenames/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/test/fixtures/basic-changenames/src/index.md -------------------------------------------------------------------------------- /test/fixtures/basic-changenames/src/nested/index.md: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic-timeout/expected/index.md: -------------------------------------------------------------------------------- 1 | body -------------------------------------------------------------------------------- /test/fixtures/basic-timeout/expected/nested/index.md: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic-timeout/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/test/fixtures/basic-timeout/src/index.md -------------------------------------------------------------------------------- /test/fixtures/basic-timeout/src/nested/index.md: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic/expected/index.md: -------------------------------------------------------------------------------- 1 | body -------------------------------------------------------------------------------- /test/fixtures/basic/expected/nested/index.md: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/basic/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/test/fixtures/basic/src/index.md -------------------------------------------------------------------------------- /test/fixtures/basic/src/nested/index.md: -------------------------------------------------------------------------------- 1 | nested body -------------------------------------------------------------------------------- /test/fixtures/empty/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilsaj/metalsmith-each/HEAD/test/index.js --------------------------------------------------------------------------------