├── .gitignore ├── README.md ├── bin └── index.js ├── index.js ├── package.json └── test ├── __snapshots__ └── index.test.js.snap ├── index.test.js └── src ├── hello.html ├── index.html └── world.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/bin/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/package.json -------------------------------------------------------------------------------- /test/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/test/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/src/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/test/src/hello.html -------------------------------------------------------------------------------- /test/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/test/src/index.html -------------------------------------------------------------------------------- /test/src/world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skatejs/wc-parser/HEAD/test/src/world.html --------------------------------------------------------------------------------