├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── src ├── components │ ├── App.js │ ├── FooBar │ │ ├── FooBar.css │ │ └── FooBar.js │ └── HelloWorld │ │ ├── HelloWorld.css │ │ └── HelloWorld.js ├── index.js └── template.ejs └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/package.json -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/FooBar/FooBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/components/FooBar/FooBar.css -------------------------------------------------------------------------------- /src/components/FooBar/FooBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/components/FooBar/FooBar.js -------------------------------------------------------------------------------- /src/components/HelloWorld/HelloWorld.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/components/HelloWorld/HelloWorld.css -------------------------------------------------------------------------------- /src/components/HelloWorld/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/components/HelloWorld/HelloWorld.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/index.js -------------------------------------------------------------------------------- /src/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/src/template.ejs -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdalgleish/postcss-local-scope-example/HEAD/webpack.config.js --------------------------------------------------------------------------------