Skip to content

Commit

Permalink
Add http server and ngrok instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
dotherightthing committed Sep 21, 2020
1 parent a9edb53 commit ca3b2bc
Show file tree
Hide file tree
Showing 3 changed files with 132 additions and 13 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,12 @@ Design Pattern: [Listbox](https://www.w3.org/TR/wai-aria-practices/#Listbox)
> Before you continue, please read Tablist widgets (or: tab panels, tabs) to understand why carousels are extended variants of tablists, simply providing additional controls like previous/next buttons, and sometimes autoplay functionality.
>
> Source: [Accessibility Developer Guide: Carousels (or: slideshow, slider)](https://www.accessibility-developer-guide.com/examples/widgets/carousel/)
---

## Cross-platform testing

```shell
cd ~
ngrok http http://127.0.0.1:8080/
```
132 changes: 120 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"doc": "docs"
},
"dependencies": {
"gh-pages": "^3.1.0"
"gh-pages": "^3.1.0",
"http-server": "^0.12.3"
},
"devDependencies": {
"cypress": "^4.10.0",
Expand All @@ -34,6 +35,7 @@
"docs": "npm run docs --prefix $npm_package_config_wpdtrt_npm_scripts",
"lint": "npm run lint --prefix $npm_package_config_wpdtrt_npm_scripts",
"release": "npm run release --prefix $npm_package_config_wpdtrt_npm_scripts",
"server": "http-server ./",
"test": "npm run test --prefix $npm_package_config_wpdtrt_npm_scripts && npx cypress run",
"version": "npm run version --prefix $npm_package_config_wpdtrt_npm_scripts",
"watch": "nodemon"
Expand Down

0 comments on commit ca3b2bc

Please sign in to comment.