├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── circle.yml ├── example ├── basic-with-router │ ├── package.json │ ├── src │ │ ├── components.js │ │ ├── index.js │ │ └── routes.js │ ├── template.js │ ├── test.js │ └── webpack.config.js ├── css-modules │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── docker-compose.yml │ ├── package.json │ ├── scripts │ │ └── generate-nginx-conf.js │ ├── server.js │ ├── src │ │ ├── components │ │ │ ├── App.js │ │ │ ├── App.styl │ │ │ ├── favicon.ico │ │ │ └── react-logo.png │ │ ├── index.js │ │ ├── lib │ │ │ └── vars.styl │ │ └── routes.js │ ├── template.js │ ├── test.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── deep-route-nesting │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── Products.js │ │ ├── index.js │ │ └── routes.js │ ├── template.js │ ├── test.js │ └── webpack.config.js ├── extract-css │ ├── .babelrc │ ├── .gitignore │ ├── package.json │ ├── server.js │ ├── src │ │ ├── components │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── favicon.ico │ │ │ └── react-logo.png │ │ └── index.js │ ├── template.js │ ├── test.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── redux │ ├── .babelrc │ ├── .gitignore │ ├── .nvmrc │ ├── README.md │ ├── package.json │ ├── render-to-document-string.js │ ├── server.js │ ├── src │ │ ├── components │ │ │ ├── App.js │ │ │ ├── App.styl │ │ │ ├── Pages.js │ │ │ ├── Pages.styl │ │ │ ├── SignUp.js │ │ │ ├── SignUp.styl │ │ │ ├── banner.jpg │ │ │ ├── favicon.ico │ │ │ └── logo-full.svg │ │ ├── index.js │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── Spinner.js │ │ │ │ ├── Spinner.styl │ │ │ │ └── index.js │ │ │ ├── expose-globals.js │ │ │ ├── fb-icon.svg │ │ │ ├── gplus-icon.svg │ │ │ ├── shared.styl │ │ │ ├── twitter-icon.svg │ │ │ └── vars.styl │ │ ├── modules │ │ │ ├── forms │ │ │ │ └── index.js │ │ │ └── things │ │ │ │ ├── index.js │ │ │ │ └── utils.js │ │ ├── redux │ │ │ ├── loggerMiddleware.js │ │ │ ├── promiseMiddleware.js │ │ │ ├── store.js │ │ │ └── types.js │ │ └── routes.js │ ├── template.js │ ├── test.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── webpack-2 │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── client │ │ ├── components │ │ │ ├── App.js │ │ │ ├── App.styl │ │ │ ├── favicon.ico │ │ │ └── react-logo.png │ │ ├── index.js │ │ ├── lib │ │ │ └── vars.styl │ │ └── routes.js │ ├── package.json │ ├── server.js │ ├── template.js │ ├── test.js │ ├── webpack.config.dev.js │ └── webpack.config.prod.js ├── with-auth0 │ ├── README.md │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── AuthService.js │ │ ├── Products.js │ │ ├── index.js │ │ └── routes.js │ ├── template.js │ ├── test.js │ └── webpack.config.js ├── with-mock-auth │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── Products.js │ │ ├── index.js │ │ └── routes.js │ ├── template.js │ ├── test.js │ └── webpack.config.js ├── with-static-markup │ ├── package.json │ ├── src │ │ ├── components.js │ │ ├── index.js │ │ └── routes.js │ ├── template.js │ ├── test.js │ └── webpack.config.js └── with-template │ ├── package.json │ ├── src │ ├── components.js │ ├── index.js │ └── routes.js │ ├── template.js │ ├── test.js │ └── webpack.config.js ├── install_test_dependencies.sh ├── package.json ├── src ├── constants.js ├── index.js └── utils.js ├── test.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | dist 5 | public 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test.js 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/circle.yml -------------------------------------------------------------------------------- /example/basic-with-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/package.json -------------------------------------------------------------------------------- /example/basic-with-router/src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/src/components.js -------------------------------------------------------------------------------- /example/basic-with-router/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/src/index.js -------------------------------------------------------------------------------- /example/basic-with-router/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/src/routes.js -------------------------------------------------------------------------------- /example/basic-with-router/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/template.js -------------------------------------------------------------------------------- /example/basic-with-router/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/test.js -------------------------------------------------------------------------------- /example/basic-with-router/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/basic-with-router/webpack.config.js -------------------------------------------------------------------------------- /example/css-modules/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/.babelrc -------------------------------------------------------------------------------- /example/css-modules/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/.editorconfig -------------------------------------------------------------------------------- /example/css-modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/.gitignore -------------------------------------------------------------------------------- /example/css-modules/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/docker-compose.yml -------------------------------------------------------------------------------- /example/css-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/package.json -------------------------------------------------------------------------------- /example/css-modules/scripts/generate-nginx-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/scripts/generate-nginx-conf.js -------------------------------------------------------------------------------- /example/css-modules/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/server.js -------------------------------------------------------------------------------- /example/css-modules/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/components/App.js -------------------------------------------------------------------------------- /example/css-modules/src/components/App.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/components/App.styl -------------------------------------------------------------------------------- /example/css-modules/src/components/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/components/favicon.ico -------------------------------------------------------------------------------- /example/css-modules/src/components/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/components/react-logo.png -------------------------------------------------------------------------------- /example/css-modules/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/index.js -------------------------------------------------------------------------------- /example/css-modules/src/lib/vars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/lib/vars.styl -------------------------------------------------------------------------------- /example/css-modules/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/src/routes.js -------------------------------------------------------------------------------- /example/css-modules/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/template.js -------------------------------------------------------------------------------- /example/css-modules/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/test.js -------------------------------------------------------------------------------- /example/css-modules/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/webpack.config.dev.js -------------------------------------------------------------------------------- /example/css-modules/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/css-modules/webpack.config.prod.js -------------------------------------------------------------------------------- /example/deep-route-nesting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/package.json -------------------------------------------------------------------------------- /example/deep-route-nesting/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/src/App.js -------------------------------------------------------------------------------- /example/deep-route-nesting/src/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/src/Products.js -------------------------------------------------------------------------------- /example/deep-route-nesting/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/src/index.js -------------------------------------------------------------------------------- /example/deep-route-nesting/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/src/routes.js -------------------------------------------------------------------------------- /example/deep-route-nesting/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/template.js -------------------------------------------------------------------------------- /example/deep-route-nesting/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/test.js -------------------------------------------------------------------------------- /example/deep-route-nesting/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/deep-route-nesting/webpack.config.js -------------------------------------------------------------------------------- /example/extract-css/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/.babelrc -------------------------------------------------------------------------------- /example/extract-css/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.DS_Store 3 | public/ 4 | .tmp/ 5 | nginx.conf 6 | npm-debug.log 7 | -------------------------------------------------------------------------------- /example/extract-css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/package.json -------------------------------------------------------------------------------- /example/extract-css/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/server.js -------------------------------------------------------------------------------- /example/extract-css/src/components/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/src/components/App.css -------------------------------------------------------------------------------- /example/extract-css/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/src/components/App.js -------------------------------------------------------------------------------- /example/extract-css/src/components/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/src/components/favicon.ico -------------------------------------------------------------------------------- /example/extract-css/src/components/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/src/components/react-logo.png -------------------------------------------------------------------------------- /example/extract-css/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/src/index.js -------------------------------------------------------------------------------- /example/extract-css/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/template.js -------------------------------------------------------------------------------- /example/extract-css/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/test.js -------------------------------------------------------------------------------- /example/extract-css/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/webpack.config.dev.js -------------------------------------------------------------------------------- /example/extract-css/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/extract-css/webpack.config.prod.js -------------------------------------------------------------------------------- /example/redux/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/.babelrc -------------------------------------------------------------------------------- /example/redux/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.DS_Store 3 | public/ 4 | .tmp/ 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /example/redux/.nvmrc: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /example/redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/README.md -------------------------------------------------------------------------------- /example/redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/package.json -------------------------------------------------------------------------------- /example/redux/render-to-document-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/render-to-document-string.js -------------------------------------------------------------------------------- /example/redux/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/server.js -------------------------------------------------------------------------------- /example/redux/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/App.js -------------------------------------------------------------------------------- /example/redux/src/components/App.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/App.styl -------------------------------------------------------------------------------- /example/redux/src/components/Pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/Pages.js -------------------------------------------------------------------------------- /example/redux/src/components/Pages.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/Pages.styl -------------------------------------------------------------------------------- /example/redux/src/components/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/SignUp.js -------------------------------------------------------------------------------- /example/redux/src/components/SignUp.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/SignUp.styl -------------------------------------------------------------------------------- /example/redux/src/components/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/banner.jpg -------------------------------------------------------------------------------- /example/redux/src/components/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/favicon.ico -------------------------------------------------------------------------------- /example/redux/src/components/logo-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/components/logo-full.svg -------------------------------------------------------------------------------- /example/redux/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/index.js -------------------------------------------------------------------------------- /example/redux/src/lib/components/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/components/Spinner.js -------------------------------------------------------------------------------- /example/redux/src/lib/components/Spinner.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/components/Spinner.styl -------------------------------------------------------------------------------- /example/redux/src/lib/components/index.js: -------------------------------------------------------------------------------- 1 | export * from './Spinner.js'; 2 | -------------------------------------------------------------------------------- /example/redux/src/lib/expose-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/expose-globals.js -------------------------------------------------------------------------------- /example/redux/src/lib/fb-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/fb-icon.svg -------------------------------------------------------------------------------- /example/redux/src/lib/gplus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/gplus-icon.svg -------------------------------------------------------------------------------- /example/redux/src/lib/shared.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/shared.styl -------------------------------------------------------------------------------- /example/redux/src/lib/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/twitter-icon.svg -------------------------------------------------------------------------------- /example/redux/src/lib/vars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/lib/vars.styl -------------------------------------------------------------------------------- /example/redux/src/modules/forms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/modules/forms/index.js -------------------------------------------------------------------------------- /example/redux/src/modules/things/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/modules/things/index.js -------------------------------------------------------------------------------- /example/redux/src/modules/things/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/modules/things/utils.js -------------------------------------------------------------------------------- /example/redux/src/redux/loggerMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/redux/loggerMiddleware.js -------------------------------------------------------------------------------- /example/redux/src/redux/promiseMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/redux/promiseMiddleware.js -------------------------------------------------------------------------------- /example/redux/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/redux/store.js -------------------------------------------------------------------------------- /example/redux/src/redux/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/redux/types.js -------------------------------------------------------------------------------- /example/redux/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/src/routes.js -------------------------------------------------------------------------------- /example/redux/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/template.js -------------------------------------------------------------------------------- /example/redux/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/test.js -------------------------------------------------------------------------------- /example/redux/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/webpack.config.dev.js -------------------------------------------------------------------------------- /example/redux/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/redux/webpack.config.prod.js -------------------------------------------------------------------------------- /example/webpack-2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/.babelrc -------------------------------------------------------------------------------- /example/webpack-2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/.editorconfig -------------------------------------------------------------------------------- /example/webpack-2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/.eslintrc.js -------------------------------------------------------------------------------- /example/webpack-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/.gitignore -------------------------------------------------------------------------------- /example/webpack-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/README.md -------------------------------------------------------------------------------- /example/webpack-2/client/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/components/App.js -------------------------------------------------------------------------------- /example/webpack-2/client/components/App.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/components/App.styl -------------------------------------------------------------------------------- /example/webpack-2/client/components/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/components/favicon.ico -------------------------------------------------------------------------------- /example/webpack-2/client/components/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/components/react-logo.png -------------------------------------------------------------------------------- /example/webpack-2/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/index.js -------------------------------------------------------------------------------- /example/webpack-2/client/lib/vars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/lib/vars.styl -------------------------------------------------------------------------------- /example/webpack-2/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/client/routes.js -------------------------------------------------------------------------------- /example/webpack-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/package.json -------------------------------------------------------------------------------- /example/webpack-2/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/server.js -------------------------------------------------------------------------------- /example/webpack-2/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/template.js -------------------------------------------------------------------------------- /example/webpack-2/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/test.js -------------------------------------------------------------------------------- /example/webpack-2/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/webpack.config.dev.js -------------------------------------------------------------------------------- /example/webpack-2/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/webpack-2/webpack.config.prod.js -------------------------------------------------------------------------------- /example/with-auth0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/README.md -------------------------------------------------------------------------------- /example/with-auth0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/package.json -------------------------------------------------------------------------------- /example/with-auth0/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/src/App.js -------------------------------------------------------------------------------- /example/with-auth0/src/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/src/AuthService.js -------------------------------------------------------------------------------- /example/with-auth0/src/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/src/Products.js -------------------------------------------------------------------------------- /example/with-auth0/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/src/index.js -------------------------------------------------------------------------------- /example/with-auth0/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/src/routes.js -------------------------------------------------------------------------------- /example/with-auth0/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/template.js -------------------------------------------------------------------------------- /example/with-auth0/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/test.js -------------------------------------------------------------------------------- /example/with-auth0/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-auth0/webpack.config.js -------------------------------------------------------------------------------- /example/with-mock-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/package.json -------------------------------------------------------------------------------- /example/with-mock-auth/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/src/App.js -------------------------------------------------------------------------------- /example/with-mock-auth/src/Products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/src/Products.js -------------------------------------------------------------------------------- /example/with-mock-auth/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/src/index.js -------------------------------------------------------------------------------- /example/with-mock-auth/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/src/routes.js -------------------------------------------------------------------------------- /example/with-mock-auth/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/template.js -------------------------------------------------------------------------------- /example/with-mock-auth/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/test.js -------------------------------------------------------------------------------- /example/with-mock-auth/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-mock-auth/webpack.config.js -------------------------------------------------------------------------------- /example/with-static-markup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/package.json -------------------------------------------------------------------------------- /example/with-static-markup/src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/src/components.js -------------------------------------------------------------------------------- /example/with-static-markup/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/src/index.js -------------------------------------------------------------------------------- /example/with-static-markup/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/src/routes.js -------------------------------------------------------------------------------- /example/with-static-markup/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/template.js -------------------------------------------------------------------------------- /example/with-static-markup/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/test.js -------------------------------------------------------------------------------- /example/with-static-markup/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-static-markup/webpack.config.js -------------------------------------------------------------------------------- /example/with-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/package.json -------------------------------------------------------------------------------- /example/with-template/src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/src/components.js -------------------------------------------------------------------------------- /example/with-template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/src/index.js -------------------------------------------------------------------------------- /example/with-template/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/src/routes.js -------------------------------------------------------------------------------- /example/with-template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/template.js -------------------------------------------------------------------------------- /example/with-template/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/test.js -------------------------------------------------------------------------------- /example/with-template/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/example/with-template/webpack.config.js -------------------------------------------------------------------------------- /install_test_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/install_test_dependencies.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/src/utils.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/test.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iansinnott/react-static-webpack-plugin/HEAD/utils.js --------------------------------------------------------------------------------