@will-stone/eslint-config 15.0.0 → 15.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -937,7 +937,10 @@ async function react(_options) {
937
937
  // src/configs/tailwind.ts
938
938
  async function tailwind(rawOptions) {
939
939
  const options = !rawOptions || rawOptions === true ? {} : rawOptions;
940
- const plugin = await import("eslint-plugin-tailwindcss");
940
+ const plugin = await interopDefault(
941
+ // @ts-expect-error -- no types
942
+ import("eslint-plugin-tailwindcss")
943
+ );
941
944
  return [
942
945
  {
943
946
  files: ["**/*.{jsx,tsx,astro}"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/eslint-config",
3
- "version": "15.0.0",
3
+ "version": "15.0.1",
4
4
  "description": "Will Stone's ESLint config",
5
5
  "keywords": [
6
6
  "eslint-config"