Skip to content

Instantly share code, notes, and snippets.

@yoav-lavi
Created April 20, 2019 20:28
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yoav-lavi/1baa0fc60017cc3473cc3c8d0a16b600 to your computer and use it in GitHub Desktop.
Save yoav-lavi/1baa0fc60017cc3473cc3c8d0a16b600 to your computer and use it in GitHub Desktop.
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: green; icon-glyph: file-code;
const getString = importModule('getString');
const documentDirectory = FileManager.iCloud().documentsDirectory();
const header = `// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: deep-gray; icon-glyph: file-code;`;
module.exports = async ({moduleName, url}) => {
const moduleString = await getString({ url });
FileManager.iCloud().writeString(`${documentDirectory}/${moduleName}.js`, `${header}\n${moduleString}`);
return importModule(moduleName);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment