@motiadev/workbench 0.2.1-beta.45 → 0.2.1-beta.46

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.
@@ -1,64 +1,9 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const path_1 = __importDefault(require("path"));
7
- const tailwindcss_animate_1 = __importDefault(require("tailwindcss-animate"));
8
- const config = {
9
- darkMode: ['class'],
10
- content: [
11
- path_1.default.resolve(__dirname, './index.html'),
12
- path_1.default.resolve(__dirname, './src/**/*.{ts,tsx,js,jsx}'),
13
- path_1.default.resolve(process.cwd(), './steps/**/*.tsx'),
14
- ],
15
- theme: {
16
- extend: {
17
- borderRadius: {
18
- lg: 'var(--radius)',
19
- md: 'calc(var(--radius) - 2px)',
20
- sm: 'calc(var(--radius) - 4px)',
21
- },
22
- colors: {
23
- background: 'hsl(var(--background))',
24
- foreground: 'hsl(var(--foreground))',
25
- card: {
26
- DEFAULT: 'hsl(var(--card))',
27
- foreground: 'hsl(var(--card-foreground))',
28
- },
29
- popover: {
30
- DEFAULT: 'hsl(var(--popover))',
31
- foreground: 'hsl(var(--popover-foreground))',
32
- },
33
- primary: {
34
- DEFAULT: 'hsl(var(--primary))',
35
- foreground: 'hsl(var(--primary-foreground))',
36
- },
37
- secondary: {
38
- DEFAULT: 'hsl(var(--secondary))',
39
- foreground: 'hsl(var(--secondary-foreground))',
40
- },
41
- accent: {
42
- DEFAULT: 'hsl(var(--accent))',
43
- foreground: 'hsl(var(--accent-foreground))',
44
- },
45
- destructive: {
46
- DEFAULT: 'hsl(var(--destructive))',
47
- foreground: 'hsl(var(--destructive-foreground))',
48
- },
49
- border: 'hsl(var(--border))',
50
- input: 'hsl(var(--input))',
51
- ring: 'hsl(var(--ring))',
52
- chart: {
53
- '1': 'hsl(var(--chart-1))',
54
- '2': 'hsl(var(--chart-2))',
55
- '3': 'hsl(var(--chart-3))',
56
- '4': 'hsl(var(--chart-4))',
57
- '5': 'hsl(var(--chart-5))',
58
- },
59
- },
60
- },
61
- },
62
- plugins: [tailwindcss_animate_1.default],
63
- };
64
- exports.default = config;
1
+ const path = require('path')
2
+
3
+ module.exports = {
4
+ content: [
5
+ path.resolve(__dirname, './index.html'),
6
+ path.resolve(__dirname, './src/**/*.{ts,tsx,js,jsx}'),
7
+ path.resolve(process.cwd(), './steps/**/*.tsx'),
8
+ ],
9
+ }