├── .deployignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .stylelintrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── composer.json ├── entries ├── README.md └── panel │ ├── index.php │ ├── index.scss │ ├── index.tsx │ └── panel.tsx ├── jest.config.js ├── jsconfig.json ├── package.json ├── phpstan.neon ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── src ├── assets.php └── main.php ├── tsconfig.eslint.json ├── tsconfig.json └── wp-block-debug.php /.deployignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/.deployignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@alleyinteractive/stylelint-config" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/babel.config.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/composer.json -------------------------------------------------------------------------------- /entries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/entries/README.md -------------------------------------------------------------------------------- /entries/panel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/entries/panel/index.php -------------------------------------------------------------------------------- /entries/panel/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/entries/panel/index.scss -------------------------------------------------------------------------------- /entries/panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/entries/panel/index.tsx -------------------------------------------------------------------------------- /entries/panel/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/entries/panel/panel.tsx -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/phpstan.neon -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/screenshot-3.png -------------------------------------------------------------------------------- /src/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/src/assets.php -------------------------------------------------------------------------------- /src/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/src/main.php -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wp-block-debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-block-debug/HEAD/wp-block-debug.php --------------------------------------------------------------------------------