@joystick.js/cli-canary 0.0.0-canary.1005 → 0.0.0-canary.1007
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/lib/build/index.js +3 -3
- package/package.json +2 -2
- package/src/lib/build/index.js +22 -13
package/dist/lib/build/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
\u2714 App built as ${
|
|
3
|
-
`)),await
|
|
1
|
+
import y from"chalk";import w from"child_process";import s from"fs";import{dirname as $}from"path";import x from"util";import z from"./build_files.js";import v from"./get_files_to_build.js";import k from"./get_file_operation.js";import F from"./get_path_platform.js";import j from"./get_tar_ignore_list.js";import B from"../load_settings.js";import P from"../loader.js";import f from"../path_exists.js";import S from"../../lib/encrypt_buffer.js";const{mkdir:A,copyFile:D,readFile:L,writeFile:q,readdir:C}=s.promises,l=x.promisify(w.exec),E=(r=[])=>r?.map(a=>({path:a,operation:k(a),platform:F(a)})),G=async(r={})=>{const a=new P,e=r?.type||"tar",p=r?.environment||"production";a.print(`Building app to ${e} for ${p}...`);const n=await B(p),u=n?.config?.build?.excluded_paths||n?.config?.build?.excludedPaths,m=await v(u),o=e==="tar"?".build/.tar":".build",_=E(m);await f(".build")&&await l("rm -rf .build");const c=[];for(let t=0;t<n?.config?.build?.copy_paths?.length;t+=1){const i=n?.config?.build?.copy_paths[t];if(s.existsSync(i))if(s.lstatSync(i).isDirectory()){const h=await C(i,{recursive:!0});c.push(...(h||[])?.map(g=>`${i}/${g}`))}else c.push(i)}console.log(c);const d=[..._?.filter(t=>t?.operation==="copy_file"),...(c||[])?.map(t=>({path:t}))],b=_?.filter(t=>t?.operation==="build_file");for(let t=0;t<d?.length;t+=1){const i=d[t];await A($(`${o}/${i?.path}`),{recursive:!0}),await D(i?.path,`${o}/${i?.path}`)}if(await z({files:b,environment:p,output_path:o}).catch(t=>{console.warn(t)}),e==="tar"){const t=j(n?.config?.build?.excludedPaths);await l(`cd ${o} && tar --exclude=${t} -czf ../build.tar.gz .`),await l(`rm -rf ${o}`)}if(e==="tar"&&r?.encrypt_build){const t=o?.replace("/.tar","/build.tar.gz"),i=S(await L(t),r?.encryption_key);await q(".build/build.encrypted.tar.gz",i)}r?.silence_confirmation||console.log(y.greenBright(`
|
|
2
|
+
\u2714 App built as ${e} to ${e==="tar"?o?.replace("/.tar","/build.tar.gz"):o}!
|
|
3
|
+
`)),await f(".build/component_id_cache.json")&&await l("rm -rf .build/component_id_cache.json")};var Z=G;export{Z as default};
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joystick.js/cli-canary",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-canary.
|
|
5
|
-
"canary_version": "0.0.0-canary.
|
|
4
|
+
"version": "0.0.0-canary.1007",
|
|
5
|
+
"canary_version": "0.0.0-canary.1006",
|
|
6
6
|
"description": "The CLI for Joystick.",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"bin": {
|
package/src/lib/build/index.js
CHANGED
|
@@ -44,27 +44,36 @@ const build = async (options = {}) => {
|
|
|
44
44
|
await exec(`rm -rf .build`);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
const custom_copy_paths = [];
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
settings?.config?.build?.copy_paths
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
for (let i = 0; i < settings?.config?.build?.copy_paths?.length; i += 1) {
|
|
50
|
+
const custom_copy_path = settings?.config?.build?.copy_paths[i];
|
|
51
|
+
|
|
52
|
+
if (fs.existsSync(custom_copy_path)) {
|
|
53
53
|
const stat = fs.lstatSync(custom_copy_path);
|
|
54
|
-
const paths = stat.isDirectory() ? await readdir(custom_copy_path, { recursive: true }) : [custom_copy_path];
|
|
55
|
-
return paths?.flatMap((path) => {
|
|
56
|
-
return { path };
|
|
57
|
-
});
|
|
58
|
-
})
|
|
59
|
-
) : [];
|
|
60
54
|
|
|
61
|
-
|
|
55
|
+
if (stat.isDirectory()) {
|
|
56
|
+
const paths = await readdir(custom_copy_path, { recursive: true });
|
|
57
|
+
custom_copy_paths.push(
|
|
58
|
+
...(paths || [])?.map((path) => {
|
|
59
|
+
return `${custom_copy_path}/${path}`;
|
|
60
|
+
})
|
|
61
|
+
);
|
|
62
|
+
} else {
|
|
63
|
+
custom_copy_paths.push(custom_copy_path);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
console.log(custom_copy_paths);
|
|
62
69
|
|
|
63
70
|
const files_to_copy = [
|
|
64
71
|
...files_to_build_with_operation_and_platform?.filter((file) => {
|
|
65
72
|
return file?.operation === 'copy_file';
|
|
66
73
|
}),
|
|
67
|
-
...(custom_copy_paths || [])
|
|
74
|
+
...(custom_copy_paths || [])?.map((custom_copy_path) => {
|
|
75
|
+
return { path: custom_copy_path };
|
|
76
|
+
}),
|
|
68
77
|
];
|
|
69
78
|
|
|
70
79
|
const files_to_build = files_to_build_with_operation_and_platform?.filter((file) => {
|