├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE.md ├── Makefile ├── README.md ├── docs └── images │ ├── exit-code-notice.png │ └── launching-scipt-example.gif ├── esbuild.config.mjs ├── main.ts ├── manifest.json ├── package.json ├── styles.css ├── tsconfig.json ├── useful └── icons.txt ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/exit-code-notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/docs/images/exit-code-notice.png -------------------------------------------------------------------------------- /docs/images/launching-scipt-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/docs/images/launching-scipt-example.gif -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/package.json -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | This plugin needs no styles for now 3 | */ 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/tsconfig.json -------------------------------------------------------------------------------- /useful/icons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/useful/icons.txt -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlessandroRuggiero/script-launcher/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.1.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------