├── .eslintrc.json ├── .github └── workflows │ └── dev.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json └── test ├── .gitkeep ├── error.js ├── extends.js ├── filters.js ├── fixtures ├── _layout.pug ├── extends.pug ├── filters.pug ├── helloworld.pug ├── helloworld2.pug └── pug-error.pug ├── get-fixture.js ├── stream.js └── test.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | .nyc_output/ 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/test/error.js -------------------------------------------------------------------------------- /test/extends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/test/extends.js -------------------------------------------------------------------------------- /test/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/test/filters.js -------------------------------------------------------------------------------- /test/fixtures/_layout.pug: -------------------------------------------------------------------------------- 1 | div 2 | block content 3 | -------------------------------------------------------------------------------- /test/fixtures/extends.pug: -------------------------------------------------------------------------------- 1 | extend _layout 2 | 3 | block content 4 | h1 Hello World 5 | -------------------------------------------------------------------------------- /test/fixtures/filters.pug: -------------------------------------------------------------------------------- 1 | :shout 2 | hello, tester 3 | -------------------------------------------------------------------------------- /test/fixtures/helloworld.pug: -------------------------------------------------------------------------------- 1 | h1 Hello, tester! 2 | h2= title 3 | h3= foo || 'foo' 4 | -------------------------------------------------------------------------------- /test/fixtures/helloworld2.pug: -------------------------------------------------------------------------------- 1 | h1 Hello, tester! 2 | h2= title 3 | h3= foo || 'foo' 4 | -------------------------------------------------------------------------------- /test/fixtures/pug-error.pug: -------------------------------------------------------------------------------- 1 | include not_exist_file 2 | -------------------------------------------------------------------------------- /test/get-fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/test/get-fixture.js -------------------------------------------------------------------------------- /test/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/test/stream.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-pug/HEAD/test/test.js --------------------------------------------------------------------------------