@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.
- package/dist/scripts/init-app.js +23 -15
- package/package.json +1 -1
- package/src/scripts/init-app.ts +23 -15
package/dist/scripts/init-app.js
CHANGED
|
@@ -622,14 +622,18 @@ export default nextConfig;
|
|
|
622
622
|
|
|
623
623
|
/** @type {import('tailwindcss').Config} */
|
|
624
624
|
const config = {
|
|
625
|
-
content:
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
"
|
|
630
|
-
|
|
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
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
"
|
|
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
package/src/scripts/init-app.ts
CHANGED
|
@@ -738,14 +738,18 @@ export default nextConfig;
|
|
|
738
738
|
|
|
739
739
|
/** @type {import('tailwindcss').Config} */
|
|
740
740
|
const config = {
|
|
741
|
-
content:
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
"
|
|
746
|
-
|
|
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
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
"
|
|
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: {
|