@pinegrow/vite-plugin 3.0.0-beta.121 → 3.0.0-beta.122

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/package.json +1 -1
  2. package/types.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/vite-plugin",
3
- "version": "3.0.0-beta.121",
3
+ "version": "3.0.0-beta.122",
4
4
  "description": "Pinegrow Vite Plugin",
5
5
  "type": "module",
6
6
  "files": [
package/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Options as PinegrowTailwindCSSPluginOptions } from '@pinegrow/tailwindcss-plugin'
1
+ import type { PinegrowTailwindCSSModuleOptions } from '@pinegrow/tailwindcss-plugin'
2
2
  import type { Options as AutoImportComponentsOptions } from 'unplugin-vue-components/types'
3
3
  import type { Options as AutoImportAPIsOptions } from 'unplugin-auto-import/types'
4
4
 
@@ -37,7 +37,7 @@ interface Options {
37
37
  /**
38
38
  * Pinegrow TailwindCSS plugin options
39
39
  */
40
- tailwindcss?: PinegrowTailwindCSSPluginOptions
40
+ tailwindcss?: PinegrowTailwindCSSModuleOptions
41
41
  }
42
42
 
43
43
  interface PinegrowVitePlugin {