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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kirby-deploy",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "main": "./dist/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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
@@ -69,7 +69,6 @@ export const loadConfig = async (): Promise<ConfigResolved | null> => {
69
69
  ...config.lftpSettings,
70
70
  },
71
71
  lftpFlags: ['--parallel=10', '--dereference', ...(config.lftpFlags ?? [])],
72
- url: 'fu',
73
72
  } satisfies ConfigResolved
74
73
 
75
74
  return configResolved