create-domis 1.0.34 → 1.0.36
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/bin/create-domis +2 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -4
- package/package.json +4 -13
package/bin/create-domis
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
export { }
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
#!/usr/bin/env node
|
|
3
|
-
|
|
4
1
|
// src/index.ts
|
|
5
2
|
import inquirer from "inquirer";
|
|
6
3
|
import chalk from "chalk";
|
|
@@ -10,7 +7,7 @@ import path from "path";
|
|
|
10
7
|
import os from "os";
|
|
11
8
|
import extract from "extract-zip";
|
|
12
9
|
var API_VERIFY = "https://verifyprokey-rk2ogbbeja-uc.a.run.app";
|
|
13
|
-
console.log(chalk.green.bold("\n\u{1F525} DomisPacks Technical v1.0.
|
|
10
|
+
console.log(chalk.green.bold("\n\u{1F525} DomisPacks Technical v1.0.36\n"));
|
|
14
11
|
function copyRecursive(src, dest) {
|
|
15
12
|
const stat = fs.lstatSync(src);
|
|
16
13
|
if (stat.isDirectory()) {
|
package/package.json
CHANGED
|
@@ -1,25 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-domis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"description": "CLI Oficial DomisPacks - Acelerador Next.js 15 + Tailwind v4 + SaaS Boilerplate",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin":
|
|
7
|
-
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
6
|
+
"bin": "./bin/create-domis",
|
|
7
|
+
"files": [ "dist", "bin" ],
|
|
12
8
|
"scripts": {
|
|
13
9
|
"build": "tsup src/index.ts --format esm --dts",
|
|
14
10
|
"dev": "tsx src/index.ts",
|
|
15
11
|
"prepublishOnly": "npm run build"
|
|
16
12
|
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"firebase",
|
|
19
|
-
"domis",
|
|
20
|
-
"create-domis",
|
|
21
|
-
"cli"
|
|
22
|
-
],
|
|
13
|
+
"keywords": [ "firebase", "domis", "create-domis", "cli" ],
|
|
23
14
|
"author": "Domisnnet",
|
|
24
15
|
"license": "LICENSE",
|
|
25
16
|
"dependencies": {
|