@castari/cli 0.0.9 → 0.0.10
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/commands/deploy.js +1 -1
- package/package.json +1 -1
package/dist/commands/deploy.js
CHANGED
|
@@ -25,7 +25,7 @@ export async function deploy(options) {
|
|
|
25
25
|
const projectRoot = process.cwd();
|
|
26
26
|
// Add local files, respecting a simple ignore list for now
|
|
27
27
|
// Ideally we'd parse .gitignore, but for MVP let's just ignore common heavy folders
|
|
28
|
-
const ignoreList = ['node_modules', '.git', 'dist', '.
|
|
28
|
+
const ignoreList = ['node_modules', '.git', 'dist', '.env'];
|
|
29
29
|
zip.addLocalFolder(projectRoot, undefined, (filename) => {
|
|
30
30
|
// Simple filter: return false to exclude
|
|
31
31
|
// filename is the relative path in the zip? No, it seems to be the absolute path or filename.
|