8000 Move package to sidworks-dev · sidworks-dev/sw-db-sync@94eb2e9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 94eb2e9

Browse files
committed
Move package to sidworks-dev
1 parent 528db87 commit 94eb2e9

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: jellesiderius
1+
github: sidworks-dev

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
This tool downloads clean/stripped or full Shopware 6 databases & media images over a SSH connection, imports and configures it for development purposes. Have a fully configurated production or staging environment on your local machine within minutes. Making life a little bit easier.
66

77
## Getting started
8-
Follow the [documentation](https://github.com/jellesiderius/sw-db-sync/wiki) and get started.
8+
Follow the [documentation](https://github.com/sidworks-dev/sw-db-sync/wiki) and get started.

dist/controllers/selfUpdateController.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/utils/versionCheck.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sw-db-sync",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Database synchronizer for Shopware 6",
55
"author": {
66
"name": "Jelle Siderius"

src/controllers/selfUpdateController.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SelfUpdateController {
2727
if (config.currentVersion < config.latestVersion) {
2828
await consoleCommand(`cd ${config.npmPath}; rm -rf dist`, false);
2929

30-
await download('jellesiderius/sw-db-sync#master', config.npmPath, async function (err: any) {
30+
await download('sidworks-dev/sw-db-sync#master', config.npmPath, async function (err: any) {
3131
await consoleCommand(`cd ${config.npmPath}; npm install`, false);
3232
success(`Updated sw-db-sync from ${config.currentVersion} to ${config.latestVersion}`);
3333
});

src/utils/versionCheck.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class VersionCheck {
1111

1212
// versions
1313
getToolVersions = async () => {
14-
await fetch('https://raw.githubusercontent.com/jellesiderius/sw-db-sync/master/package.json')
14+
await fetch('https://raw.githubusercontent.com/sidworks-dev/sw-db-sync/master/package.json')
1515
.then((res: { json: () => any; }) => res.json())
1616
.then((json: { version: string; }) => this.config.latestVersion = json.version);
1717
}

0 commit comments

Comments
 (0)
0