├── .gitignore ├── .gitmodules ├── .jshintrc ├── .npmignore ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks └── wpt.js └── test ├── expected └── locations.json └── wpt_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | pages 4 | component -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tmp 2 | npm-debug.log 3 | test 4 | 5 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/package.json -------------------------------------------------------------------------------- /tasks/wpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/tasks/wpt.js -------------------------------------------------------------------------------- /test/expected/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/test/expected/locations.json -------------------------------------------------------------------------------- /test/wpt_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sideroad/grunt-wpt/HEAD/test/wpt_test.js --------------------------------------------------------------------------------