├── .gitattributes ├── .github └── CONTRIBUTING.md ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .yo-rc.json ├── LICENSE.md ├── README.md ├── app ├── USAGE ├── index.js └── templates │ ├── .travis.yml │ ├── Dockunit.json │ ├── README.md │ ├── _bowerrc │ ├── _editorconfig │ ├── _gitignore │ ├── assets │ ├── README.md │ ├── css │ │ └── style.css │ ├── js │ │ └── index.js │ └── repo │ │ └── README.md │ ├── bin │ └── install-wp-tests.sh │ ├── bower.json │ ├── composer.json │ ├── config │ ├── settings.js │ └── webpack.config.js │ ├── includes │ └── README.md │ ├── package.json │ ├── phpcs.xml │ ├── phpunit.xml │ ├── plugin.php │ └── tests │ ├── bootstrap.php │ └── test-base.php ├── cli ├── README.md ├── index.js └── templates │ ├── cli.php │ └── tests.php ├── cpt ├── README.md ├── index.js └── templates │ ├── cpt.php │ └── tests.php ├── css ├── README.md ├── index.js └── templates │ └── styles.css ├── endpoint ├── README.md ├── index.js └── templates │ ├── endpoint.php │ └── tests.php ├── include ├── README.md ├── index.js └── templates │ ├── include.php │ └── tests.php ├── js ├── README.md ├── index.js └── templates │ ├── _eslintrc.json │ └── main.js ├── npm-shrinkwrap.json ├── options ├── README.md ├── index.js └── templates │ ├── options.php │ └── tests.php ├── package.json ├── pagebuilder ├── README.md ├── index.js └── templates │ ├── class-pagebuilder.php │ └── tests.php ├── phpcs.xml ├── plugin-wp-base.js ├── taxonomy ├── README.md ├── index.js └── templates │ ├── taxonomy.php │ └── tests.php ├── test ├── test-app.js ├── test-assets │ └── subgenerator-test-plugin │ │ ├── .bowerrc │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .sass-lint.yml │ │ ├── .travis.yml │ │ ├── .yo-rc.json │ │ ├── Dockunit.json │ │ ├── Gruntfile.js │ │ ├── Gulpfile.js │ │ ├── README.md │ │ ├── assets │ │ ├── README.md │ │ └── repo │ │ │ └── README.md │ │ ├── bin │ │ └── install-wp-tests.sh │ │ ├── bower.json │ │ ├── includes │ │ └── README.md │ │ ├── package.json │ │ ├── phpcs.xml │ │ ├── phpunit.xml │ │ ├── subgenerator-test-plugin.php │ │ └── tests │ │ ├── bootstrap.php │ │ └── test-base.php ├── test-cpt.js ├── test-css.js ├── test-endpoint.js ├── test-include.js ├── test-js.js ├── test-options.js ├── test-taxonomy.js └── test-widget.js └── widget ├── README.md ├── index.js └── templates ├── tests.php └── widget.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/README.md -------------------------------------------------------------------------------- /app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/USAGE -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/.travis.yml -------------------------------------------------------------------------------- /app/templates/Dockunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/Dockunit.json -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/README.md -------------------------------------------------------------------------------- /app/templates/_bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "assets/bower" 3 | } -------------------------------------------------------------------------------- /app/templates/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/_editorconfig -------------------------------------------------------------------------------- /app/templates/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/_gitignore -------------------------------------------------------------------------------- /app/templates/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/assets/README.md -------------------------------------------------------------------------------- /app/templates/assets/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/assets/js/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/assets/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/assets/repo/README.md -------------------------------------------------------------------------------- /app/templates/bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /app/templates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/bower.json -------------------------------------------------------------------------------- /app/templates/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/composer.json -------------------------------------------------------------------------------- /app/templates/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/config/settings.js -------------------------------------------------------------------------------- /app/templates/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/config/webpack.config.js -------------------------------------------------------------------------------- /app/templates/includes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/includes/README.md -------------------------------------------------------------------------------- /app/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/package.json -------------------------------------------------------------------------------- /app/templates/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/phpcs.xml -------------------------------------------------------------------------------- /app/templates/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/phpunit.xml -------------------------------------------------------------------------------- /app/templates/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/plugin.php -------------------------------------------------------------------------------- /app/templates/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/tests/bootstrap.php -------------------------------------------------------------------------------- /app/templates/tests/test-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/app/templates/tests/test-base.php -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cli/index.js -------------------------------------------------------------------------------- /cli/templates/cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cli/templates/cli.php -------------------------------------------------------------------------------- /cli/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cli/templates/tests.php -------------------------------------------------------------------------------- /cpt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cpt/README.md -------------------------------------------------------------------------------- /cpt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cpt/index.js -------------------------------------------------------------------------------- /cpt/templates/cpt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cpt/templates/cpt.php -------------------------------------------------------------------------------- /cpt/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/cpt/templates/tests.php -------------------------------------------------------------------------------- /css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/css/README.md -------------------------------------------------------------------------------- /css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/css/index.js -------------------------------------------------------------------------------- /css/templates/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/css/templates/styles.css -------------------------------------------------------------------------------- /endpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/endpoint/README.md -------------------------------------------------------------------------------- /endpoint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/endpoint/index.js -------------------------------------------------------------------------------- /endpoint/templates/endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/endpoint/templates/endpoint.php -------------------------------------------------------------------------------- /endpoint/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/endpoint/templates/tests.php -------------------------------------------------------------------------------- /include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/include/README.md -------------------------------------------------------------------------------- /include/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/include/index.js -------------------------------------------------------------------------------- /include/templates/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/include/templates/include.php -------------------------------------------------------------------------------- /include/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/include/templates/tests.php -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/js/README.md -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/js/index.js -------------------------------------------------------------------------------- /js/templates/_eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/js/templates/_eslintrc.json -------------------------------------------------------------------------------- /js/templates/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/js/templates/main.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /options/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/options/README.md -------------------------------------------------------------------------------- /options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/options/index.js -------------------------------------------------------------------------------- /options/templates/options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/options/templates/options.php -------------------------------------------------------------------------------- /options/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/options/templates/tests.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/package.json -------------------------------------------------------------------------------- /pagebuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/pagebuilder/README.md -------------------------------------------------------------------------------- /pagebuilder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/pagebuilder/index.js -------------------------------------------------------------------------------- /pagebuilder/templates/class-pagebuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/pagebuilder/templates/class-pagebuilder.php -------------------------------------------------------------------------------- /pagebuilder/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/pagebuilder/templates/tests.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/phpcs.xml -------------------------------------------------------------------------------- /plugin-wp-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/plugin-wp-base.js -------------------------------------------------------------------------------- /taxonomy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/taxonomy/README.md -------------------------------------------------------------------------------- /taxonomy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/taxonomy/index.js -------------------------------------------------------------------------------- /taxonomy/templates/taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/taxonomy/templates/taxonomy.php -------------------------------------------------------------------------------- /taxonomy/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/taxonomy/templates/tests.php -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-app.js -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "assets/bower" 3 | } -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/.editorconfig -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/.eslintrc.js -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/.gitignore -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/.sass-lint.yml -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/.travis.yml -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/.yo-rc.json -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/Dockunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/Dockunit.json -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/Gruntfile.js -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/Gulpfile.js -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/README.md -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/assets/README.md -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/assets/repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/assets/repo/README.md -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/bower.json -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/includes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/includes/README.md -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/package.json -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/phpcs.xml -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/phpunit.xml -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/subgenerator-test-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/subgenerator-test-plugin.php -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/tests/bootstrap.php -------------------------------------------------------------------------------- /test/test-assets/subgenerator-test-plugin/tests/test-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-assets/subgenerator-test-plugin/tests/test-base.php -------------------------------------------------------------------------------- /test/test-cpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-cpt.js -------------------------------------------------------------------------------- /test/test-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-css.js -------------------------------------------------------------------------------- /test/test-endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-endpoint.js -------------------------------------------------------------------------------- /test/test-include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-include.js -------------------------------------------------------------------------------- /test/test-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-js.js -------------------------------------------------------------------------------- /test/test-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-options.js -------------------------------------------------------------------------------- /test/test-taxonomy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-taxonomy.js -------------------------------------------------------------------------------- /test/test-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/test/test-widget.js -------------------------------------------------------------------------------- /widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/widget/README.md -------------------------------------------------------------------------------- /widget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/widget/index.js -------------------------------------------------------------------------------- /widget/templates/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/widget/templates/tests.php -------------------------------------------------------------------------------- /widget/templates/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/generator-plugin-wp/HEAD/widget/templates/widget.php --------------------------------------------------------------------------------