-
Open the Terminal
-
Use
mysqldumpto backup your databases -
Check for MySQL processes with:
ps -ax | grep mysql -
Stop and kill any MySQL processes
-
Analyze MySQL on HomeBrew:
brew remove mysql
Steps to publish a npm package to beta that won't be available via latest and won't auto install on ncu updates etc
- Ensure any compile is run
npm run distetc - Modify version in package.json to the following format (match with existing verion numbers etc)
"version": "0.1.120-beta.1"where beta.x is the number of those betas - Publish to npm
npm publish --tag beta
There are two options for install:
- Always install beta with
npm install packagename@beta - Install specific version with
npm install package@0.1.120-beta.1
use git diff to generate file list
git diff --name-only master
add ext filter
| Trigger event | pull_request |
pull_request_target |
push |
|---|---|---|---|
github.ref |
refs/pull/53/merge | refs/heads/main | refs/heads/test/pull_request_target |
github.head_ref |
test/pull_request_target | test/pull_request_target | - |
main: default branchtest/pull_request_target: topic branch name53: pull request number