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.0.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: v6.1.0
Choose a head ref
  • 2 commits
  • 5 files changed
  • 3 contributors

Commits on Oct 21, 2022

  1. feat: add option to set cssPath to false (#544)

    Co-authored-by: Younho Choo <yo+github@younho9.com>
    Co-authored-by: Sébastien Chopin <seb@nuxtlabs.com>
    younho9 and atinux authored Oct 21, 2022
    Copy the full SHA
    f45fc97 View commit details
  2. chore(release): 6.1.0

    atinux committed Oct 21, 2022
    Copy the full SHA
    ac4810d View commit details
Showing with 27 additions and 3 deletions.
  1. +7 −0 CHANGELOG.md
  2. +14 −0 docs/content/1.getting-started/2.options.md
  3. +1 −1 package.json
  4. +5 −2 src/module.ts
  5. 0 src/runtime/empty.css
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

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.

## [6.1.0](https://github.com/nuxt-community/tailwindcss-module/compare/v6.0.1...v6.1.0) (2022-10-21)


### Features

* add option to set `cssPath` to `false` ([#544](https://github.com/nuxt-community/tailwindcss-module/issues/544)) ([f45fc97](https://github.com/nuxt-community/tailwindcss-module/commit/f45fc97b87eb63acdf9568d917177322d957ac82))

### [6.0.1](https://github.com/nuxt-community/tailwindcss-module/compare/v6.0.0...v6.0.1) (2022-10-19)

## [6.0.0](https://github.com/nuxt-community/tailwindcss-module/compare/v5.3.5...v6.0.0) (2022-10-19)
14 changes: 14 additions & 0 deletions docs/content/1.getting-started/2.options.md
Original file line number Diff line number Diff line change
@@ -33,6 +33,20 @@ export default {

This file will be directly injected as a [global CSS](https://v3.nuxtjs.org/api/configuration/nuxt.config#css) for Nuxt. It supports `css`, `sass`, `postcss`, and more.

If you don't want to inject CSS file, you can set `cssPath` to `false`.

```ts [nuxt.config]
export default {
tailwindcss: {
cssPath: false,
}
}
```

::alert{type="warning"}
When set to `false`, note that HMR for tailwindcss will be broken (hard refresh needed).
::

## `configPath`

- Default: `'tailwind.config'`
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.0.1",
"version": "6.1.0",
"description": "TailwindCSS module for Nuxt",
"repository": "nuxt-community/tailwindcss-module",
"license": "MIT",
7 changes: 5 additions & 2 deletions src/module.ts
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ type Arrayable<T> = T | T[]

export interface ModuleOptions {
configPath: Arrayable<string>;
cssPath: string;
cssPath: string | false;
config: Config;
viewer: boolean;
exposeConfig: boolean;
@@ -170,7 +170,7 @@ export default defineNuxtModule<ModuleOptions>({
* CSS file handling
*/

const cssPath = await resolvePath(moduleOptions.cssPath, { extensions: ['.css', '.sass', '.scss', '.less', '.styl'] })
const cssPath = typeof moduleOptions.cssPath === 'string' ? await resolvePath(moduleOptions.cssPath, { extensions: ['.css', '.sass', '.scss', '.less', '.styl'] }) : false

// Include CSS file in project css
let resolvedCss: string
@@ -183,6 +183,9 @@ export default defineNuxtModule<ModuleOptions>({
// @ts-ignore
resolvedCss = createResolver(import.meta.url).resolve('runtime/tailwind.css')
}
} else {
logger.info('No Tailwind CSS file found. Skipping...')
resolvedCss = createResolver(import.meta.url).resolve('runtime/empty.css')
}
nuxt.options.css = nuxt.options.css ?? []
const resolvedNuxtCss = await Promise.all(nuxt.options.css.map(p => resolvePath(p)))
Empty file added src/runtime/empty.css
Empty file.