├── .babelrc ├── .browserslistrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .postcssrc ├── .stylelintrc ├── LICENSE ├── README.md ├── composer.json ├── gulp-tasks ├── clean.js ├── cssnano.js ├── image.js ├── postcss.js └── translate.js ├── gulpfile.babel.js ├── includes ├── Helpers.php ├── Plugin.php ├── Settings.php ├── TemplateTags.php └── readme.md ├── languages └── wp-svg-helpers.pot ├── package.json ├── wp-svg-helpers.php └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/.babelrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- 1 | # Browser support 2 | 3 | > .5% 4 | Last 2 versions 5 | not dead 6 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/.postcssrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/composer.json -------------------------------------------------------------------------------- /gulp-tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/gulp-tasks/clean.js -------------------------------------------------------------------------------- /gulp-tasks/cssnano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/gulp-tasks/cssnano.js -------------------------------------------------------------------------------- /gulp-tasks/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/gulp-tasks/image.js -------------------------------------------------------------------------------- /gulp-tasks/postcss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/gulp-tasks/postcss.js -------------------------------------------------------------------------------- /gulp-tasks/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/gulp-tasks/translate.js -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /includes/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/includes/Helpers.php -------------------------------------------------------------------------------- /includes/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/includes/Plugin.php -------------------------------------------------------------------------------- /includes/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/includes/Settings.php -------------------------------------------------------------------------------- /includes/TemplateTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/includes/TemplateTags.php -------------------------------------------------------------------------------- /includes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/includes/readme.md -------------------------------------------------------------------------------- /languages/wp-svg-helpers.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/languages/wp-svg-helpers.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/package.json -------------------------------------------------------------------------------- /wp-svg-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/wp-svg-helpers.php -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenmoore/wp-svg-helpers/HEAD/yarn.lock --------------------------------------------------------------------------------