├── .eslintrc.js ├── .gitignore ├── .graphql_ppx_cache ├── graphql_schema.json.hash └── graphql_schema.json.marshaled ├── .merlin ├── .prettierrc ├── LICENSE ├── README.md ├── bsconfig.json ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── graphql_schema.json ├── package.json ├── re ├── Bio.bs.js ├── Bio.re ├── Blog.bs.js ├── Blog.re ├── Header.bs.js ├── Header.re ├── Index.bs.js ├── Index.re ├── Post.bs.js ├── Post.re ├── Utils.bs.js ├── Utils.re └── types │ ├── Gatsby.bs.js │ └── Gatsby.re ├── src ├── components │ └── layout.js ├── images │ └── gatsby-icon.png ├── pages │ ├── 404.js │ ├── blog │ │ ├── how-types-improve-javascript │ │ │ └── index.md │ │ ├── index.js │ │ └── use-reasonml │ │ │ └── index.md │ └── index.js └── templates │ └── blog-post.js ├── static └── images │ └── iwilsonq.jpg └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphql_ppx_cache/graphql_schema.json.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/.graphql_ppx_cache/graphql_schema.json.hash -------------------------------------------------------------------------------- /.graphql_ppx_cache/graphql_schema.json.marshaled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/.graphql_ppx_cache/graphql_schema.json.marshaled -------------------------------------------------------------------------------- /.merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/.merlin -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/bsconfig.json -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import 'normalize-css' 2 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /graphql_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/graphql_schema.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/package.json -------------------------------------------------------------------------------- /re/Bio.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Bio.bs.js -------------------------------------------------------------------------------- /re/Bio.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Bio.re -------------------------------------------------------------------------------- /re/Blog.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Blog.bs.js -------------------------------------------------------------------------------- /re/Blog.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Blog.re -------------------------------------------------------------------------------- /re/Header.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Header.bs.js -------------------------------------------------------------------------------- /re/Header.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Header.re -------------------------------------------------------------------------------- /re/Index.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Index.bs.js -------------------------------------------------------------------------------- /re/Index.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Index.re -------------------------------------------------------------------------------- /re/Post.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Post.bs.js -------------------------------------------------------------------------------- /re/Post.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Post.re -------------------------------------------------------------------------------- /re/Utils.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Utils.bs.js -------------------------------------------------------------------------------- /re/Utils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/Utils.re -------------------------------------------------------------------------------- /re/types/Gatsby.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/types/Gatsby.bs.js -------------------------------------------------------------------------------- /re/types/Gatsby.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/re/types/Gatsby.re -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/blog/how-types-improve-javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/pages/blog/how-types-improve-javascript/index.md -------------------------------------------------------------------------------- /src/pages/blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/pages/blog/index.js -------------------------------------------------------------------------------- /src/pages/blog/use-reasonml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/pages/blog/use-reasonml/index.md -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /static/images/iwilsonq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/static/images/iwilsonq.jpg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwilsonq/gatsby-starter-reasonml/HEAD/yarn.lock --------------------------------------------------------------------------------