blacksmith-cli 0.1.7 → 0.1.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blacksmith-cli",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Fullstack Django + React framework — one command, one codebase, one mental model",
5
5
  "type": "module",
6
6
  "bin": {
@@ -0,0 +1,10 @@
1
+ import { extendTheme, type ThemeConfig } from '@chakra-ui/react'
2
+
3
+ const config: ThemeConfig = {
4
+ initialColorMode: 'system',
5
+ useSystemColorMode: true,
6
+ }
7
+
8
+ const theme = extendTheme({ config })
9
+
10
+ export default theme
@@ -67,7 +67,5 @@ export default {
67
67
  },
68
68
  },
69
69
  },
70
- plugins: [
71
- require('tailwindcss-animate'),
72
- ],
70
+ plugins: [],
73
71
  }