@lastbrain/app 0.1.12 → 0.1.13

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.
@@ -622,14 +622,18 @@ export default nextConfig;
622
622
 
623
623
  /** @type {import('tailwindcss').Config} */
624
624
  const config = {
625
- content: {
626
- files: [
627
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
628
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
629
- "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
630
- "./node_modules/@heroui/*/src/**/*.{js,jsx,ts,tsx}"
631
- ]
632
- },
625
+ content: [
626
+ "./app/**/*.{js,ts,jsx,tsx,mdx}",
627
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
628
+ {
629
+ raw: "",
630
+ files: [
631
+ "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
632
+ "./node_modules/@heroui/*/src/**/*.{js,jsx,ts,tsx}"
633
+ ],
634
+ relative: true
635
+ }
636
+ ],
633
637
  theme: {
634
638
  extend: {},
635
639
  },
@@ -644,13 +648,17 @@ export default config;
644
648
  // Configuration Tailwind CSS uniquement
645
649
  tailwindConfig = `/** @type {import('tailwindcss').Config} */
646
650
  const config = {
647
- content: {
648
- files: [
649
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
650
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
651
- "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
652
- ]
653
- },
651
+ content: [
652
+ "./app/**/*.{js,ts,jsx,tsx,mdx}",
653
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
654
+ {
655
+ raw: "",
656
+ files: [
657
+ "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
658
+ ],
659
+ relative: true
660
+ }
661
+ ],
654
662
  theme: {
655
663
  extend: {
656
664
  colors: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lastbrain/app",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Framework modulaire Next.js avec CLI et système de modules",
5
5
  "private": false,
6
6
  "type": "module",
@@ -738,14 +738,18 @@ export default nextConfig;
738
738
 
739
739
  /** @type {import('tailwindcss').Config} */
740
740
  const config = {
741
- content: {
742
- files: [
743
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
744
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
745
- "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
746
- "./node_modules/@heroui/*/src/**/*.{js,jsx,ts,tsx}"
747
- ]
748
- },
741
+ content: [
742
+ "./app/**/*.{js,ts,jsx,tsx,mdx}",
743
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
744
+ {
745
+ raw: "",
746
+ files: [
747
+ "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
748
+ "./node_modules/@heroui/*/src/**/*.{js,jsx,ts,tsx}"
749
+ ],
750
+ relative: true
751
+ }
752
+ ],
749
753
  theme: {
750
754
  extend: {},
751
755
  },
@@ -759,13 +763,17 @@ export default config;
759
763
  // Configuration Tailwind CSS uniquement
760
764
  tailwindConfig = `/** @type {import('tailwindcss').Config} */
761
765
  const config = {
762
- content: {
763
- files: [
764
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
765
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
766
- "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
767
- ]
768
- },
766
+ content: [
767
+ "./app/**/*.{js,ts,jsx,tsx,mdx}",
768
+ "./components/**/*.{js,ts,jsx,tsx,mdx}",
769
+ {
770
+ raw: "",
771
+ files: [
772
+ "./node_modules/@lastbrain/*/src/**/*.{js,jsx,ts,tsx}",
773
+ ],
774
+ relative: true
775
+ }
776
+ ],
769
777
  theme: {
770
778
  extend: {
771
779
  colors: {