@classic-homes/theme-tailwind-preset 0.1.0 → 0.1.1
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.
- package/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6,19 +6,19 @@
|
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
* ```js
|
|
9
|
-
* import preset from '@classic-theme
|
|
9
|
+
* import preset from '@classic-homes/theme-tailwind-preset';
|
|
10
10
|
*
|
|
11
11
|
* export default {
|
|
12
12
|
* presets: [preset],
|
|
13
13
|
* content: [
|
|
14
14
|
* './src/**\/*.{html,js,svelte,ts}',
|
|
15
|
-
* './node_modules/@classic-theme
|
|
15
|
+
* './node_modules/@classic-homes/theme-svelte/**\/*.{html,js,svelte,ts}',
|
|
16
16
|
* ],
|
|
17
17
|
* };
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
|
-
const tokens = require('@classic-theme
|
|
21
|
+
const tokens = require('@classic-homes/theme-tokens');
|
|
22
22
|
|
|
23
23
|
/** @type {import('tailwindcss').Config} */
|
|
24
24
|
module.exports = {
|