Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/tailwindcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.9.2
Choose a base ref
...
head repository: nuxt-modules/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.9.3
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 2, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0c4532d View commit details
  2. chore(release): v6.9.3

    atinux committed Nov 2, 2023
    Copy the full SHA
    fd43a0e View commit details
Showing with 14 additions and 2 deletions.
  1. +12 −0 CHANGELOG.md
  2. +1 −1 package.json
  3. +1 −1 src/resolvers.ts
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## v6.9.3

[compare changes](https://github.com/nuxt-modules/tailwindcss/compare/v6.9.2...v6.9.3)

### 🩹 Fixes

- Allow options.imports to not be set ([#751](https://github.com/nuxt-modules/tailwindcss/pull/751))

### ❤️ Contributors

- Connor Pearson <cjp822@gmail.com>

## v6.9.2

[compare changes](https://github.com/nuxt-modules/tailwindcss/compare/v6.9.1...v6.9.2)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/tailwindcss",
"version": "6.9.2",
"version": "6.9.3",
"description": "TailwindCSS module for Nuxt",
"repository": "nuxt-modules/tailwindcss",
"license": "MIT",
2 changes: 1 addition & 1 deletion src/resolvers.ts
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ export const resolveContentPaths = (srcDir: string, nuxt = useNuxt()) => {
const defaultExtensions = extensionFormat(['js', 'ts', 'mjs'])
const sfcExtensions = extensionFormat(nuxt.options.extensions.map(e => e.replace(/^\.*/, '')))

const importDirs = [...(nuxt.options.imports.dirs || [])].map(r)
const importDirs = [...(nuxt.options.imports?.dirs || [])].map(r)
const [composablesDir, utilsDir] = [resolve(srcDir, 'composables'), resolve(srcDir, 'utils')]

if (!importDirs.includes(composablesDir)) importDirs.push(composablesDir)