Last active
July 6, 2021 00:49
-
-
Save fcamblor/9f96424f675537df36c903abc54feb92 to your computer and use it in GitHub Desktop.
Revisions
-
fcamblor revised this gist
Jul 6, 2021 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,5 @@ #!/usr/bin/env zx void async function() { await $`curl -sSL https://raw.githubusercontent.com/fcamblor/bitrise-zx-scripts/main/index.mjs > /tmp/index.mjs` const {config, cacheableCommand} = await import('/tmp/index.mjs'); -
fcamblor revised this gist
Jul 6, 2021 . 1 changed file with 8 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,18 @@ #!/usr/bin/env zx import 'zx' void async function() { await $`curl -sSL https://raw.githubusercontent.com/fcamblor/bitrise-zx-scripts/main/index.mjs > /tmp/index.mjs` const {config, cacheableCommand} = await import('/tmp/index.mjs'); config(process); await cacheableCommand({ cacheName:'cma-npm-packages', cachedPaths: ['node_modules'], compressContent: true, checksumCommand: () => $`md5 -q package.json` }, () => $`npm install`); }() -
fcamblor revised this gist
Jul 6, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ #!/usr/bin/env zx const {config, cacheableCommand} = await import('https://raw.githubusercontent.com/fcamblor/bitrise-zx-scripts/main/index.mjs'); config(process); -
fcamblor created this gist
Jul 6, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ #!/usr/bin/env zx import {config, cacheableCommand} from 'https://raw.githubusercontent.com/fcamblor/bitrise-zx-scripts/main/index.mjs'; config(process); void async function() { await cacheableCommand({ cacheName:'npm-packages', cachedPaths: ['node_modules'], compressContent: true, checksumCommand: () => $`md5 -q package.json` }, () => $`npm install`); }()