├── .gitignore ├── .travis.yml ├── README.md ├── package.json ├── preact-shadow-root.js └── test └── index.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developit/preact-shadow-root/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developit/preact-shadow-root/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developit/preact-shadow-root/HEAD/package.json -------------------------------------------------------------------------------- /preact-shadow-root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developit/preact-shadow-root/HEAD/preact-shadow-root.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developit/preact-shadow-root/HEAD/test/index.test.js --------------------------------------------------------------------------------