├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── index.php ├── package.json └── src └── block1 ├── block.json ├── edit.js ├── index.js ├── save.js └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | package-lock.json 4 | .DS_Store 5 | *.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/block1/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/src/block1/block.json -------------------------------------------------------------------------------- /src/block1/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/src/block1/edit.js -------------------------------------------------------------------------------- /src/block1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/src/block1/index.js -------------------------------------------------------------------------------- /src/block1/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/src/block1/save.js -------------------------------------------------------------------------------- /src/block1/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/them-es/wordpress-blocks-boilerplate/HEAD/src/block1/style.css --------------------------------------------------------------------------------