kirby-deploy 0.0.4 → 0.0.5
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/cli.js +2 -3
- package/package.json +1 -1
- package/src/commands/main.ts +1 -1
- package/src/config.ts +0 -1
package/dist/cli.js
CHANGED
|
@@ -116,8 +116,7 @@ ${info}`);
|
|
|
116
116
|
"ftp:ssl-force": true,
|
|
117
117
|
...config.lftpSettings
|
|
118
118
|
},
|
|
119
|
-
lftpFlags: ["--parallel=10", "--dereference", ...config.lftpFlags ?? []]
|
|
120
|
-
url: "fu"
|
|
119
|
+
lftpFlags: ["--parallel=10", "--dereference", ...config.lftpFlags ?? []]
|
|
121
120
|
};
|
|
122
121
|
return configResolved;
|
|
123
122
|
};
|
|
@@ -434,7 +433,7 @@ var main = defineCommand3({
|
|
|
434
433
|
];
|
|
435
434
|
const excludeGlob = [...config.excludeGlob, ".*", ".*/"];
|
|
436
435
|
const include = config.include;
|
|
437
|
-
const includeGlob = [...config.includeGlob, ".htaccess"];
|
|
436
|
+
const includeGlob = [...config.includeGlob, ".htaccess", ".vite/"];
|
|
438
437
|
const branch = getBranch();
|
|
439
438
|
const displaySource = branch ? colors5.cyan(` ${branch} `) : " ";
|
|
440
439
|
const displayDestination = colors5.magenta(
|
package/package.json
CHANGED
package/src/commands/main.ts
CHANGED
|
@@ -35,7 +35,7 @@ export const main = defineCommand({
|
|
|
35
35
|
]
|
|
36
36
|
const excludeGlob = [...config.excludeGlob, '.*', '.*/']
|
|
37
37
|
const include = config.include
|
|
38
|
-
const includeGlob = [...config.includeGlob, '.htaccess']
|
|
38
|
+
const includeGlob = [...config.includeGlob, '.htaccess', '.vite/']
|
|
39
39
|
|
|
40
40
|
const branch = getBranch()
|
|
41
41
|
const displaySource = branch ? colors.cyan(` ${branch} `) : ' '
|
package/src/config.ts
CHANGED