diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e1ca2138..de15b99f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,7 +4,7 @@ name: PR Merge Verification
on:
# Triggers the workflow on push or pull request events but only for the main branch
pull_request:
- branches: [ master ]
+ branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml
index 850ea513..3b3a0879 100644
--- a/.github/workflows/npm-publish.yml
+++ b/.github/workflows/npm-publish.yml
@@ -6,7 +6,7 @@ name: Release with Testing
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
- branches: [ master ]
+ branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
diff --git a/README.md b/README.md
index c27de5e2..ebea8ea1 100644
--- a/README.md
+++ b/README.md
@@ -4,17 +4,17 @@
-
@sumwatshade/oclif-plugin-update
+ @intuit/oclif-plugin-update
A fork of @oclif/plugin-update that mimics an [NVM](https://github.com/nvm-sh/nvm)-like experience
-[![Version](https://img.shields.io/npm/v/@sumwatshade/oclif-plugin-update.svg)](https://npmjs.org/package/@sumwatshade/oclif-plugin-update)
-![CI Job](https://github.com/sumwatshade/plugin-update/actions/workflows/ci.yml/badge.svg)
-![Release Job](https://github.com/sumwatshade/plugin-update/actions/workflows/npm-publish.yml/badge.svg)
-[![Downloads/week](https://img.shields.io/npm/dw/@sumwatshade/oclif-plugin-update.svg)](https://npmjs.org/package/@sumwatshade/oclif-plugin-update)
-[![License](https://img.shields.io/npm/l/@sumwatshade/oclif-plugin-update.svg)](https://github.com/sumwatshade/plugin-update/blob/master/package.json)
+[![Version](https://img.shields.io/npm/v/@intuit/oclif-plugin-update.svg)](https://npmjs.org/package/@intuit/oclif-plugin-update)
+![CI Job](https://github.com/intuit/plugin-update/actions/workflows/ci.yml/badge.svg)
+![Release Job](https://github.com/intuit/plugin-update/actions/workflows/npm-publish.yml/badge.svg)
+[![Downloads/week](https://img.shields.io/npm/dw/@intuit/oclif-plugin-update.svg)](https://npmjs.org/package/@intuit/oclif-plugin-update)
+[![License](https://img.shields.io/npm/l/@intuit/oclif-plugin-update.svg)](https://github.com/intuit/plugin-update/blob/master/package.json)
Table of Contents
@@ -50,7 +50,7 @@ ARGUMENTS
VERSION Specify an explicit version (ex. 3.0.0-next.1) or a channel (ex. alpha)
```
-_See code: [src/commands/install.ts](https://github.com/sumwatshade/plugin-update/blob/v1.9.4/src/commands/install.ts)_
+_See code: [src/commands/install.ts](https://github.com/intuit/plugin-update/blob/v1.9.4/src/commands/install.ts)_
## `oclif-example update [CHANNEL]`
@@ -67,7 +67,7 @@ OPTIONS
--from-local interactively choose an already installed version
```
-_See code: [src/commands/update.ts](https://github.com/sumwatshade/plugin-update/blob/v1.9.4/src/commands/update.ts)_
+_See code: [src/commands/update.ts](https://github.com/intuit/plugin-update/blob/v1.9.4/src/commands/update.ts)_
## `oclif-example use [VERSION]`
@@ -81,7 +81,7 @@ ARGUMENTS
VERSION Specify an explicit version (ex. 3.0.0-next.1) or a channel (ex. alpha)
```
-_See code: [src/commands/use.ts](https://github.com/sumwatshade/plugin-update/blob/v1.9.4/src/commands/use.ts)_
+_See code: [src/commands/use.ts](https://github.com/intuit/plugin-update/blob/v1.9.4/src/commands/use.ts)_
## Contributing
diff --git a/package.json b/package.json
index 511be2e7..eb503c4a 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
- "name": "@sumwatshade/oclif-plugin-update",
+ "name": "@intuit/oclif-plugin-update",
"version": "1.9.4",
"author": "Lucas Shadler @sumwatshade",
- "bugs": "https://github.com/sumwatshade/plugin-update/issues",
+ "bugs": "https://github.com/intuit/plugin-update/issues",
"dependencies": {
"@oclif/color": "^0.1.0",
"@oclif/command": "^1.7.0",
@@ -66,7 +66,7 @@
"oclif.manifest.json",
"/lib"
],
- "homepage": "https://github.com/sumwatshade/plugin-update",
+ "homepage": "https://github.com/intuit/plugin-update",
"keywords": [
"oclif-plugin"
],
@@ -86,7 +86,7 @@
"registry": "https://registry.npmjs.org/",
"access": "public"
},
- "repository": "sumwatshade/plugin-update",
+ "repository": "intuit/plugin-update",
"scripts": {
"lint": "eslint . --ext .ts --config .eslintrc.js",
"test": "jest",
diff --git a/src/commands/install.ts b/src/commands/install.ts
index bce52a57..218a88c4 100644
--- a/src/commands/install.ts
+++ b/src/commands/install.ts
@@ -28,7 +28,7 @@ export default class InstallCommand extends UpdateCommand {
if (await isSemverAlias(args.version ?? '')) {
throw new Error(
- `We do not yet support major/minor aliases with the install command. Please refer to this issue for updates: https://github.com/sumwatshade/plugin-update/issues/32`,
+ `We do not yet support major/minor aliases with the install command. Please refer to this issue for updates: https://github.com/intuit/plugin-update/issues/32`,
);
}
diff --git a/src/commands/update.ts b/src/commands/update.ts
index 9ba3e21c..dae32981 100644
--- a/src/commands/update.ts
+++ b/src/commands/update.ts
@@ -60,7 +60,7 @@ export default class UpdateCommand extends Command {
if (await isSemverAlias(this.channel)) {
throw new Error(
- `We do not yet support major/minor aliases with the update command. Please refer to this issue for updates on the enhancement: https://github.com/sumwatshade/plugin-update/issues/32`,
+ `We do not yet support major/minor aliases with the update command. Please refer to this issue for updates on the enhancement: https://github.com/intuit/plugin-update/issues/32`,
);
}
diff --git a/test/commands/install.test.ts b/test/commands/install.test.ts
index 8ce5d986..d8db9526 100644
--- a/test/commands/install.test.ts
+++ b/test/commands/install.test.ts
@@ -154,7 +154,7 @@ describe('Install Command', () => {
}
expect(err.message).toBe(
- `We do not yet support major/minor aliases with the install command. Please refer to this issue for updates: https://github.com/sumwatshade/plugin-update/issues/32`,
+ `We do not yet support major/minor aliases with the install command. Please refer to this issue for updates: https://github.com/intuit/plugin-update/issues/32`,
);
});