diff --git a/.distignore b/.distignore index 7d784fa..dc44acd 100644 --- a/.distignore +++ b/.distignore @@ -1,13 +1,24 @@ /.wordpress-org + /.git /.github + /node_modules + /src +.gitattributes .distignore .gitignore + +composer.json +composer.lock + package.json package-lock.json + README.md -webpack-config.js + +webpack.config.js + .travis.yml \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3b5d3e1 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,24 @@ +/.wordpress-org export-ignore + +/.git export-ignore +/.github export-ignore + +/node_modules export-ignore + +/src export-ignore + +.gitattributes export-ignore +.distignore export-ignore +.gitignore export-ignore + +composer.json export-ignore +composer.lock export-ignore + +package.json export-ignore +package-lock.json export-ignore + +README.md export-ignore + +webpack.config.js export-ignore + +.travis.yml export-ignore \ No newline at end of file