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.6.6
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.6.7
Choose a head ref
  • 5 commits
  • 8 files changed
  • 4 contributors

Commits on Apr 26, 2023

  1. chore: upgrade deps

    Closes #654
    atinux committed Apr 26, 2023
    Copy the full SHA
    cb92551 View commit details

Commits on Apr 27, 2023

  1. chore: exclude test files and add app.config to Tailwind content (#662)

    * Exclude test files from glob pattern
    
    * chore: update and add app config
    
    * Update docs
    
    ---------
    
    Co-authored-by: Sébastien Chopin <seb@nuxtjs.com>
    Co-authored-by: Sébastien Chopin <seb@nuxt.com>
    3 people authored Apr 27, 2023
    Copy the full SHA
    ee83cea View commit details
  2. test: fix test (#665)

    antfu authored Apr 27, 2023
    Copy the full SHA
    55484ca View commit details
  3. chore: update deps

    atinux committed Apr 27, 2023
    Copy the full SHA
    fcdbae1 View commit details
  4. chore(release): v6.6.7

    atinux committed Apr 27, 2023
    Copy the full SHA
    62a20df View commit details
Showing with 1,591 additions and 1,594 deletions.
  1. +21 −0 CHANGELOG.md
  2. +3 −1 docs/content/2.tailwind/1.config.md
  3. +18 −18 package.json
  4. +1,520 −1,552 pnpm-lock.yaml
  5. +3 −1 src/module.ts
  6. +15 −10 test/basic.test.ts
  7. +10 −10 test/configs.test.ts
  8. +1 −2 vitest.config.ts
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,27 @@

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.6.7

[compare changes](https://undefined/undefined/compare/v6.6.6...v6.6.7)


### 🏡 Chore

- Upgrade deps (cb92551)
- Exclude test files and add app.config to Tailwind content (#662)
- Update deps (fcdbae1)

### ✅ Tests

- Fix test (#665)

### ❤️ Contributors

- Sébastien Chopin ([@Atinux](http://github.com/Atinux))
- Anthony Fu <anthonyfu117@hotmail.com>
- Maarten Van Hunsel

## v6.6.6

[compare changes](https://undefined/undefined/compare/v6.6.5...v6.6.6)
4 changes: 3 additions & 1 deletion docs/content/2.tailwind/1.config.md
Original file line number Diff line number Diff line change
@@ -18,7 +18,9 @@ This module comes with a default Tailwind configuration file to provide the best
`${srcDir}/App.{js,ts,vue}`,
`${srcDir}/app.{js,ts,vue}`,
`${srcDir}/Error.{js,ts,vue}`,
`${srcDir}/error.{js,ts,vue}`
`${srcDir}/error.{js,ts,vue}`,
`${srcDir}/app.config.{js,ts}`,
`!${srcDir}/**/*.{spec,test}.*` // mind the ! at the start
]
}
```
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/tailwindcss",
"version": "6.6.6",
"version": "6.6.7",
"description": "TailwindCSS module for Nuxt",
"repository": "nuxt-modules/tailwindcss",
"license": "MIT",
@@ -25,40 +25,40 @@
"test": "vitest run"
},
"dependencies": {
"@nuxt/kit": "^3.3.1",
"@nuxt/kit": "^3.4.2",
"@nuxt/postcss8": "^1.1.3",
"autoprefixer": "^10.4.14",
"chokidar": "^3.5.3",
"clear-module": "^4.1.2",
"colorette": "^2.0.19",
"colorette": "^2.0.20",
"cookie-es": "^0.5.0",
"defu": "^6.1.2",
"destr": "^1.2.2",
"h3": "^1.6.2",
"iron-webcrypto": "^0.6.0",
"h3": "^1.6.4",
"iron-webcrypto": "^0.7.0",
"pathe": "^1.1.0",
"postcss": "^8.4.21",
"postcss-custom-properties": "^13.1.4",
"postcss-nesting": "^11.2.1",
"radix3": "^1.0.0",
"postcss": "^8.4.23",
"postcss-custom-properties": "^13.1.5",
"postcss-nesting": "^11.2.2",
"radix3": "^1.0.1",
"tailwind-config-viewer": "^1.7.2",
"tailwindcss": "~3.3.0",
"tailwindcss": "~3.3.2",
"ufo": "^1.1.1",
"uncrypto": "^0.1.2"
},
"devDependencies": {
"@fontsource/inter": "^4.5.15",
"@nuxt/content": "^2.5.2",
"@nuxt/devtools": "^0.2.5",
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "^3.3.1",
"@nuxt/content": "^2.6.0",
"@nuxt/devtools": "^0.4.2",
"@nuxt/module-builder": "^0.3.0",
"@nuxt/test-utils": "^3.4.2",
"@nuxtjs/eslint-config-typescript": "latest",
"@tailwindcss/typography": "^0.5.9",
"changelogen": "^0.5.1",
"changelogen": "^0.5.3",
"codecov": "latest",
"eslint": "latest",
"jsdom": "^21.1.1",
"nuxt": "^3.3.1",
"vitest": "^0.29.7"
"nuxt": "^3.4.2",
"vitest": "^0.30.1"
}
}
}
Loading