Update Atom to use the new GitHub org name.

This commit is contained in:
Bauke 2020-04-17 16:58:51 +02:00
parent baa1239450
commit be39c3b9ff
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
4 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@
### Software
* [Atom](https://atom.io/users/HollloCC)
* [Atom](https://atom.io/users/Holllo)
* Firefox Color [Dark](https://color.firefox.com/?theme=XQAAAAIYAQAAAAAAAABBqYhm849SCia2CaaEGccwS-xNKlhSXT3Vtt2XDAs6h7gdL5pcAb7xqXopx66Ln4wY2B4_apm1Xo1m-kSLNybjC15LIb4OXWhGfyPJrZA2e0IeJeWC0yox2SBMD04SrZBvZwoC8QX9EBbJd69TMCmh7d-g0Wc_msdR2nzvnbFECN4_c5VKI9Btzbzvdvjw1-KH_nfezJDCoRea7HASdSJBgMVdHiWfmWiLujatKOWmCJfGaFyV_75SjmA)/[Light](https://color.firefox.com/?theme=XQAAAAIqAQAAAAAAAABBqYhm849SCia2CaaEGccwS-xNKliFvSp4LiFpmRcA5AwYsIABKiGtHcakOiV8NSmxjnVR9H4TYg2VNxSp6iDrgcvBoo3NoFSZSndEX6ZHCH8h1ahP78I4dZXjJD8ZzlOxqC6HrDKQmTBAEm09iix8uVI5_QcbhtDjDxpYbPP5WGvXu84Za9H0s1VXwrgKdxIgKTJraGh0P5bPsWJ_YY-lPSsAB62ABnbOV7SJEIMsWMC9a01QhpCubrrA-f_WNVAA)
* [Kitty](https://love.holllo.cc/love-kitty.zip)
* [Sublime Text](https://love.holllo.cc/Love.sublime-package)

View File

@ -1,7 +1,7 @@
{
"name": "love",
"description": "A color scheme for you to love. ♡",
"version": "0.1.1",
"version": "0.1.2",
"license": "MIT",
"author": "Holllo <helllo@holllo.cc>",
"homepage": "https://love.holllo.cc",

View File

@ -158,7 +158,7 @@
</h3>
<ul>
<li>
<a href="https://atom.io/users/HollloCC">Atom</a>
<a href="https://atom.io/users/Holllo">Atom</a>
</li>
<li>
Firefox Color

View File

@ -75,13 +75,13 @@ ${variant.colors.grays
'syntax',
variant.name
);
syntaxPackage.repository = `git@github.com:HollloCC/love-${variant.name}-syntax.git`;
syntaxPackage.repository = `git@github.com:Holllo/love-${variant.name}-syntax.git`;
const uiPackage: any = {...packageTemplate};
uiPackage.name = `love-${variant.name}-ui`;
uiPackage.theme = 'ui';
uiPackage.keywords = uiPackage.keywords.concat('ui', variant.name);
uiPackage.repository = `git@github.com:HollloCC/love-${variant.name}-ui.git`;
uiPackage.repository = `git@github.com:Holllo/love-${variant.name}-ui.git`;
await fsp.writeFile(
join(syntaxDirectory, 'package.json'),