create-domis 1.0.25 → 1.0.26
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/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ async function main() {
|
|
|
18
18
|
choices: [
|
|
19
19
|
{ name: "\u{1F525} DomisDocs Free - firebase.json + firebaserc + package.json + README.md", value: "demo" },
|
|
20
20
|
{ name: "\u{1F525} DomisDocs Lite \u2014 Next.js 15 + Tailwind v4 + Firebase Killer", value: "lite" },
|
|
21
|
-
{ name: "\u{1F525} DomisDocs
|
|
21
|
+
{ name: "\u{1F525} DomisDocs Pro \u2014 Next.js 15 + Stripe + Rules + SSR + CI/CD", value: "pro" }
|
|
22
22
|
]
|
|
23
23
|
},
|
|
24
24
|
{
|
|
@@ -47,11 +47,11 @@ async function main() {
|
|
|
47
47
|
hosting: { public: "dist", ignore: ["firebase.json", "**/.*", "**/node_modules/**"] }
|
|
48
48
|
}, null, 2));
|
|
49
49
|
fs.writeFileSync(path.join(target, ".firebaserc"), JSON.stringify({
|
|
50
|
-
projects: { default: "
|
|
50
|
+
projects: { default: "free" }
|
|
51
51
|
}, null, 2));
|
|
52
52
|
fs.writeFileSync(path.join(target, "README.md"), `DomisDocs Free`);
|
|
53
53
|
spinner2.succeed(chalk.green.bold(`
|
|
54
|
-
\u2705 ${target}
|
|
54
|
+
\u2705 ${target} DEMO FREE criada!`));
|
|
55
55
|
console.log(chalk.cyan(`
|
|
56
56
|
\u{1F4E6} DEMO: https://domisdocs-6a896.web.app`));
|
|
57
57
|
console.log(chalk.gray("Esse pack \xE9 gr\xE1tis e p\xFAblico, sem necessidade de PRO_KEY."));
|