diff --git a/packages/grunt-purgecss/build.ts b/packages/grunt-purgecss/build.ts index 8978c3db..c36a9c24 100644 --- a/packages/grunt-purgecss/build.ts +++ b/packages/grunt-purgecss/build.ts @@ -21,8 +21,8 @@ import { RollupOptions } from "rollup"; plugins: [ typescript({ outDir: "./tasks", - }) - ] + }), + ], }; await buildRollup(rollupConfig); })(); diff --git a/packages/purgecss-webpack-plugin/__tests__/index.test.ts b/packages/purgecss-webpack-plugin/__tests__/index.test.ts index 00d6effc..dcce2120 100644 --- a/packages/purgecss-webpack-plugin/__tests__/index.test.ts +++ b/packages/purgecss-webpack-plugin/__tests__/index.test.ts @@ -48,7 +48,7 @@ describe("Webpack integration", () => { const expectedDirectory = path.resolve(testDirectory, "expected"); process.chdir(testDirectory); - + const webpackConfig = await import(`${testDirectory}/webpack.config.js`); await runWebpack({ diff --git a/scripts/verify-commit.ts b/scripts/verify-commit.ts index 2e3a4fad..0e034cba 100644 --- a/scripts/verify-commit.ts +++ b/scripts/verify-commit.ts @@ -1,6 +1,5 @@ import * as fs from "fs"; - const message = fs.readFileSync(process.env.HUSKY_GIT_PARAMS!, "utf-8").trim(); const commitRE = diff --git a/types/acorn-jsx/index.d.ts b/types/acorn-jsx/index.d.ts index afa7b60d..4437e4ce 100644 --- a/types/acorn-jsx/index.d.ts +++ b/types/acorn-jsx/index.d.ts @@ -186,4 +186,3 @@ declare module "acorn-jsx" { options?: PluginOptions, ): (BaseParser: typeof Parser) => typeof Parser; } -