├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── fixture1.pug ├── fixture2.pug ├── fixture3.pug ├── fixture4.pug ├── fixture5.pug └── subfolder │ └── fixture5.pug └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure180/gulp-pug-inheritance/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure180/gulp-pug-inheritance/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure180/gulp-pug-inheritance/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure180/gulp-pug-inheritance/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/fixture1.pug: -------------------------------------------------------------------------------- 1 | p fixture 1 -------------------------------------------------------------------------------- /test/fixtures/fixture2.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure180/gulp-pug-inheritance/HEAD/test/fixtures/fixture2.pug -------------------------------------------------------------------------------- /test/fixtures/fixture3.pug: -------------------------------------------------------------------------------- 1 | include fixture2 -------------------------------------------------------------------------------- /test/fixtures/fixture4.pug: -------------------------------------------------------------------------------- 1 | p fixture4 -------------------------------------------------------------------------------- /test/fixtures/fixture5.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/subfolder/fixture5.pug: -------------------------------------------------------------------------------- 1 | p fixture 5 -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure180/gulp-pug-inheritance/HEAD/test/main.js --------------------------------------------------------------------------------