├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── favicon-gen.js ├── html-gen.js ├── index.js ├── package.json └── test ├── img ├── nick.svg ├── notsquare.png └── testing.png └── test.js /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/README.md -------------------------------------------------------------------------------- /favicon-gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/favicon-gen.js -------------------------------------------------------------------------------- /html-gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/html-gen.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/package.json -------------------------------------------------------------------------------- /test/img/nick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/test/img/nick.svg -------------------------------------------------------------------------------- /test/img/notsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/test/img/notsquare.png -------------------------------------------------------------------------------- /test/img/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/test/img/testing.png -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NJAldwin/eleventy-plugin-gen-favicons/HEAD/test/test.js --------------------------------------------------------------------------------