├── .gitignore ├── .prettierignore ├── .travis.yml ├── README.md ├── jest.config.js ├── modules ├── __mocks__ │ ├── ContextComponent.js │ └── TestComponent.js ├── __tests__ │ └── server-test.js ├── cli.js └── index.js ├── package.json └── scripts └── build.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | testURL: 'http://localhost/' 3 | }; 4 | -------------------------------------------------------------------------------- /modules/__mocks__/ContextComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/modules/__mocks__/ContextComponent.js -------------------------------------------------------------------------------- /modules/__mocks__/TestComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/modules/__mocks__/TestComponent.js -------------------------------------------------------------------------------- /modules/__tests__/server-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/modules/__tests__/server-test.js -------------------------------------------------------------------------------- /modules/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/modules/cli.js -------------------------------------------------------------------------------- /modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/modules/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactTraining/react-stdio/HEAD/scripts/build.sh --------------------------------------------------------------------------------