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: v5.3.1
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: v5.3.2
Choose a head ref
  • 3 commits
  • 4 files changed
  • 4 contributors

Commits on Aug 12, 2022

  1. fix: remove now-unneeded @types/tailwindcss (#514)

    Co-authored-by: Daniel Roe <daniel@roe.dev>
    genu and danielroe authored Aug 12, 2022
    Copy the full SHA
    82ea9b7 View commit details
  2. fix(module): remove prefix for tailwind viewer route on nuxt 2 (#517)

    Co-authored-by: Sébastien Chopin <seb@nuxtjs.com>
    chettapong and atinux authored Aug 12, 2022
    Copy the full SHA
    2932bad View commit details
  3. chore(release): 5.3.2

    atinux committed Aug 12, 2022
    Copy the full SHA
    e5cb2b4 View commit details
Showing with 14 additions and 13 deletions.
  1. +8 −0 CHANGELOG.md
  2. +1 −2 package.json
  3. +4 −3 src/module.ts
  4. +1 −8 yarn.lock
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,14 @@

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.

### [5.3.2](https://github.com/nuxt-community/tailwindcss-module/compare/v5.3.1...v5.3.2) (2022-08-12)


### Bug Fixes

* **module:** remove prefix for tailwind viewer route on nuxt 2 ([#517](https://github.com/nuxt-community/tailwindcss-module/issues/517)) ([2932bad](https://github.com/nuxt-community/tailwindcss-module/commit/2932bad5edf9d2e8adadeaa8363923fcaa8779ec))
* remove now-unneeded `@types/tailwindcss` ([#514](https://github.com/nuxt-community/tailwindcss-module/issues/514)) ([82ea9b7](https://github.com/nuxt-community/tailwindcss-module/commit/82ea9b7d8dc7526641f359ded5d037f9492d7a7f))

### [5.3.1](https://github.com/nuxt-community/tailwindcss-module/compare/v5.3.0...v5.3.1) (2022-07-25)


3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/tailwindcss",
"version": "5.3.1",
"version": "5.3.2",
"description": "TailwindCSS module for Nuxt",
"repository": "nuxt-community/tailwindcss-module",
"license": "MIT",
@@ -28,7 +28,6 @@
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.5",
"@nuxt/postcss8": "^1.1.3",
"@types/tailwindcss": "^3.0.11",
"autoprefixer": "^10.4.7",
"chalk": "^5.0.1",
"clear-module": "^4.1.2",
7 changes: 4 additions & 3 deletions src/module.ts
Original file line number Diff line number Diff line change
@@ -134,15 +134,15 @@ export default defineNuxtModule<ModuleOptions>({
// Expose resolved tailwind config as an alias
// https://tailwindcss.com/docs/configuration/#referencing-in-javascript
if (moduleOptions.exposeConfig) {
const resolveConfig = await import('tailwindcss/resolveConfig.js').then(r => r.default || r) as any
const resolveConfig = await import('tailwindcss/resolveConfig.js').then(r => r.default || r)
const resolvedConfig = resolveConfig(tailwindConfig)
const template = addTemplate({
filename: 'tailwind.config.mjs',
getContents: () => `export default ${JSON.stringify(resolvedConfig, null, 2)}`
})
addTemplate({
filename: 'tailwind.config.d.ts',
getContents: () => 'declare const config: import("tailwindcss/tailwind-config").TailwindConfig\nexport { config as default }',
getContents: () => 'declare const config: import("tailwindcss").Config\nexport { config as default }',
write: true
})
nuxt.options.alias['#tailwind-config'] = template.dst
@@ -226,7 +226,8 @@ export default defineNuxtModule<ModuleOptions>({
const route = '/_tailwind'
const createServer = await import('tailwind-config-viewer/server/index.js').then(r => r.default || r) as any
const { withTrailingSlash, withoutTrailingSlash } = await import('ufo')
const _viewerDevMiddleware = createServer({ tailwindConfigProvider: () => tailwindConfig, routerPrefix: route }).asMiddleware()
const routerPrefix = isNuxt3() ? route : undefined
const _viewerDevMiddleware = createServer({ tailwindConfigProvider: () => tailwindConfig, routerPrefix }).asMiddleware()
const viewerDevMiddleware = (req, res) => {
if (req.originalUrl === withoutTrailingSlash(route)) {
res.writeHead(301, { Location: withTrailingSlash(req.originalUrl) })
9 changes: 1 addition & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -908,13 +908,6 @@
dependencies:
"@types/node" "*"

"@types/tailwindcss@^3.0.11":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@types/tailwindcss/-/tailwindcss-3.1.0.tgz#1185e4b3437c6e0f19d6cc8cd42738a94fd7b64f"
integrity sha512-JxPzrm609hzvF4nmOI3StLjbBEP3WWQxDDJESqR1nh94h7gyyy3XSl0hn5RBMJ9mPudlLjtaXs5YEBtLw7CnPA==
dependencies:
tailwindcss "*"

"@types/tough-cookie@*":
version "4.0.2"
resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397"
@@ -7302,7 +7295,7 @@ tailwind-config-viewer@^1.7.1:
portfinder "^1.0.26"
replace-in-file "^6.1.0"

tailwindcss@*, tailwindcss@^3.1.6:
tailwindcss@^3.1.6:
version "3.1.6"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.1.6.tgz#bcb719357776c39e6376a8d84e9834b2b19a49f1"
integrity sha512-7skAOY56erZAFQssT1xkpk+kWt2NrO45kORlxFPXUt3CiGsVPhH1smuH5XoDH6sGPXLyBv+zgCKA2HWBsgCytg==