@rpcbase/cli 0.99.0 → 0.101.0
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/package.json +1 -1
- package/src/cmd-deploy.js +2 -2
package/package.json
CHANGED
package/src/cmd-deploy.js
CHANGED
|
@@ -86,7 +86,6 @@ export const deploy = async (argv) => {
|
|
|
86
86
|
await ssh(`mkdir -p ~/apps/${deployDir}`)
|
|
87
87
|
|
|
88
88
|
const excludeList = [
|
|
89
|
-
".aider*",
|
|
90
89
|
".husky/",
|
|
91
90
|
".github/",
|
|
92
91
|
".git/",
|
|
@@ -97,12 +96,13 @@ export const deploy = async (argv) => {
|
|
|
97
96
|
".gitignore",
|
|
98
97
|
"*.css.map",
|
|
99
98
|
// "*.env*",
|
|
100
|
-
"*.js.map",
|
|
99
|
+
// "*.js.map",
|
|
101
100
|
"*.md",
|
|
102
101
|
].concat(argv.ignore)
|
|
103
102
|
|
|
104
103
|
|
|
105
104
|
const excludeArgs = excludeList.map((p) => `--exclude='${p}'`).join(" ")
|
|
105
|
+
|
|
106
106
|
const rsyncCmd = [
|
|
107
107
|
"rsync -avz -C",
|
|
108
108
|
excludeArgs,
|