├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── src ├── main.js ├── styles │ ├── globals │ │ ├── _variables.styl │ │ └── document.styl │ └── main.styl ├── views │ ├── about.js │ ├── app.js │ └── home.js └── worker.thread.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | public -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/package.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/main.js -------------------------------------------------------------------------------- /src/styles/globals/_variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/styles/globals/_variables.styl -------------------------------------------------------------------------------- /src/styles/globals/document.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/styles/globals/document.styl -------------------------------------------------------------------------------- /src/styles/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/styles/main.styl -------------------------------------------------------------------------------- /src/views/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/views/about.js -------------------------------------------------------------------------------- /src/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/views/app.js -------------------------------------------------------------------------------- /src/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/views/home.js -------------------------------------------------------------------------------- /src/worker.thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/src/worker.thread.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/feather-app/HEAD/webpack.config.js --------------------------------------------------------------------------------