Remove unused imports

This commit is contained in:
Daniel Ruf
2019-06-30 18:12:49 +02:00
parent b388e49df8
commit 481374bff7
7 changed files with 2 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import fs, { readFile, outputFile } from 'fs-extra';
import { readFile } from 'fs-extra';
import path from 'path';
import frontmatter from 'front-matter';
import marked from 'marked';

View File

@@ -6,7 +6,6 @@ import Branding from './Branding';
import Link from './Link';
import LogoLink from './LogoLink';
import Search from './Search';
import { getItemPageNames } from '../../common/config';
import actions from '../actions';
class Header extends React.Component {

View File

@@ -1,7 +1,4 @@
import React from 'react';
import actions from '../actions';
// import question from '../../assets/icons/question.svg';
function Icon({ name, ...props }) {
return (

View File

@@ -1,5 +1,4 @@
import React from 'react';
import classNames from 'classnames';
import HeadlineGroup from './HeadlineGroup';
import HeroHeadline from './HeroHeadline';
import Badge from './Badge';

View File

@@ -1,7 +1,6 @@
import { copy } from 'fs-extra';
import {
assetsPath,
faviconPath,
distPath,
} from '../common/file';

View File

@@ -1,4 +1,4 @@
import { createRadar, groupByQuadrants, outputRadar } from '../common/radar';
import { createRadar } from '../common/radar';
import { save } from '../common/file';
import { getPageNames } from '../common/config';
import { renderPage } from '../js/server';

View File

@@ -7,7 +7,6 @@ import {
assetsPath,
jsPath,
radarPath,
staticPath,
relativePath,
} from '../common/file';