├── .editorconfig ├── .github └── dependabot.yml ├── .gitignore ├── .nvmrc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── wurst.png ├── index.js ├── package.json └── test ├── _helpers.js ├── fixtures ├── foo │ ├── bar │ │ └── index.js │ └── index.js └── index.js ├── ignore.spec.js ├── index.spec.js └── log.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/README.md -------------------------------------------------------------------------------- /assets/wurst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/assets/wurst.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/package.json -------------------------------------------------------------------------------- /test/_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/_helpers.js -------------------------------------------------------------------------------- /test/fixtures/foo/bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/fixtures/foo/bar/index.js -------------------------------------------------------------------------------- /test/fixtures/foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/fixtures/foo/index.js -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/fixtures/index.js -------------------------------------------------------------------------------- /test/ignore.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/ignore.spec.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/log.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixheck/wurst/HEAD/test/log.spec.js --------------------------------------------------------------------------------