0.0.4 • Published 1 year ago

clipboard-ts v0.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Clipboard TS

This script will take TS via argv2, convert to JS and pass back via process.stdout

Meant to be used with automation apps like Better Touch Tool to make a "Paste as JS" keyboard shortcut.

This package will probably be obsolete once @swc/cli fixes their M1 integration since it should be all doable via the CLI.

Usage

Feel free to add setups for different apps.

To test on the CLI:

npx clipboard-ts "const x = 100";

Better Touch Tool

async (clipboardContentString) => {
  const shellScriptWrapper = {
    script: `PATH=/usr/local/bin/ npx clipboard-ts`,
    launchPath: `/bin/zsh`,
  };

  const result = await runShellScript(shellScriptWrapper);
  return result;
};