From fbf36d1a48618221ae016eed829efb69e3b27eab Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Thu, 27 Jun 2024 17:00:26 +0100 Subject: [PATCH] style: fix linting --- rollup.config.ts | 52 ++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/rollup.config.ts b/rollup.config.ts index 16814d0..f55302e 100644 --- a/rollup.config.ts +++ b/rollup.config.ts @@ -29,32 +29,32 @@ const external = [ * CLI bundling. */ const options: RollupOptions = { - input: "src/cli.ts", - output: { - banner, - file: "bin/streamdeck.mjs", - sourcemap: isWatching, - sourcemapPathTransform: (relativeSourcePath: string, sourcemapPath: string): string => { - return url.pathToFileURL(path.resolve(path.dirname(sourcemapPath), relativeSourcePath)).href; - }, - }, - external, - plugins: [ - typescript(), - json(), - commonjs(), - nodeResolve({ - browser: false, - exportConditions: ["node"], - preferBuiltins: true, - }), - !isWatching && - terser({ - format: { - comments: false, - }, - }), - ], + input: "src/cli.ts", + output: { + banner, + file: "bin/streamdeck.mjs", + sourcemap: isWatching, + sourcemapPathTransform: (relativeSourcePath: string, sourcemapPath: string): string => { + return url.pathToFileURL(path.resolve(path.dirname(sourcemapPath), relativeSourcePath)).href; + }, + }, + external, + plugins: [ + typescript(), + json(), + commonjs(), + nodeResolve({ + browser: false, + exportConditions: ["node"], + preferBuiltins: true, + }), + !isWatching && + terser({ + format: { + comments: false, + }, + }), + ], } export default options;