├── .commitlintrc.json ├── .git2gus └── config.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── create-github-release.yml │ ├── failureNotifications.yml │ ├── notify-slack-on-pr-open.yml │ ├── onRelease.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc.json ├── .mocharc.json ├── .prettierrc.json ├── CHANGELOG.md ├── CONRTIBUTING.md ├── LICENSE ├── README.md ├── assets └── screenshot.png ├── bin ├── dev.cmd ├── dev.js ├── run.cmd └── run.js ├── eslint.config.js ├── package.json ├── src ├── get-version.ts ├── hooks │ └── init │ │ └── check-update.ts └── index.ts ├── test ├── hooks │ └── init │ │ └── check-update.test.ts └── tsconfig.json ├── tsconfig.json └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.git2gus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.git2gus/config.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @oclif/admins 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/create-github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/create-github-release.yml -------------------------------------------------------------------------------- /.github/workflows/failureNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/failureNotifications.yml -------------------------------------------------------------------------------- /.github/workflows/notify-slack-on-pr-open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/notify-slack-on-pr-open.yml -------------------------------------------------------------------------------- /.github/workflows/onRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/onRelease.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | yarn commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | yarn lint-staged --concurrent false 2 | -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@oclif/prettier-config" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONRTIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/CONRTIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /bin/dev.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/bin/dev.cmd -------------------------------------------------------------------------------- /bin/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/bin/dev.js -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /bin/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/bin/run.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/package.json -------------------------------------------------------------------------------- /src/get-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/src/get-version.ts -------------------------------------------------------------------------------- /src/hooks/init/check-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/src/hooks/init/check-update.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /test/hooks/init/check-update.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/test/hooks/init/check-update.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oclif/plugin-warn-if-update-available/HEAD/yarn.lock --------------------------------------------------------------------------------