This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"postinstall": "node patch-flatmap-stream.js" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
presets: [ | |
["@babel/env", { | |
targets: { | |
node: "current" | |
}, | |
useBuiltIns: "usage", | |
}], | |
], | |
plugins: [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
interface UtterancProps { | |
repo: string | |
branch: string | |
issueTerm: string | |
} | |
export default class Utteranc extends React.PureComponent<UtterancProps> { | |
instance: HTMLDivElement = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
import styled from 'styled-components' | |
import Link from 'gatsby-link' | |
import theme from 'utils/theme' | |
interface HeaderProps { | |
title: string | |
fixed?: boolean | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set encoding=utf-8 | |
set fileencoding=utf-8 | |
set nocompatible " be iMproved, required | |
" Numbers | |
set number relativenumber | |
set numberwidth=4 | |
augroup numbertoggle | |
autocmd! |
NewerOlder