├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── build_test_release.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── package.json ├── release.py ├── src ├── interface.ts └── main.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_test_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/.github/workflows/build_test_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | packed 4 | lib 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/action.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/package.json -------------------------------------------------------------------------------- /release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/release.py -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-watcom/setup-watcom/HEAD/tsconfig.json --------------------------------------------------------------------------------