chore: fix eslint issues

This commit is contained in:
Pooya Parsa 2020-11-05 22:59:14 +01:00
parent 04a25fc527
commit 5fdc6ccfb6
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import type { Module } from '@nuxt/types'
import { build, compileHTMLTemplate } from './build'
import { build } from './build'
import { getoptions } from './config'
export default <Module> function slsModule () {

View File

@ -10,7 +10,7 @@ import replace from '@rollup/plugin-replace'
import analyze from 'rollup-plugin-analyzer'
import { SLSOptions } from '../config'
import { RUNTIME_DIR, resolvePath } from '../utils'
import { RUNTIME_DIR } from '../utils'
import dynamicRequire from './dynamic-require'
export type RollupConfig = InputOptions & { output: OutputOptions }