From 59bb9c38b31f80c34ba7fcc4fe7ae8309b885e16 Mon Sep 17 00:00:00 2001 From: Justin Schroeder Date: Fri, 29 Dec 2023 16:39:22 -0500 Subject: [PATCH] chore: narrow actions to ubuntu --- .github/workflows/ci.yml | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55888b8..d4e0b71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: strategy: matrix: node: [16.x, 18.x] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest] fail-fast: false steps: diff --git a/src/index.ts b/src/index.ts index df7fbc5..d44491c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -173,7 +173,7 @@ export const unpluginFactory: UnpluginFactory = ( }, // webpack's id filter is outside of loader logic, // an additional hook is needed for better perf on webpack - transformInclude(_id: string) { + transformInclude() { // TODO: resolve why @formkit/vue is not always identifiable by the id // and remove this early return workaround: return true