Skip to content

Commit

Permalink
fix: migrate organization
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed May 13, 2021
1 parent 9b166d0 commit f9f84d9
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
@@ -1,5 +1,5 @@
blank_issues_enabled: false
questions:
- name: ❓ Questions / Discussions
url: https://github.com/TypedProject/ts-gphoto2-driver/discussions
url: https://github.com/tsedio/ts-gphoto2-driver/discussions
about: You want to ask a question or discuss with other community members
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -42,7 +42,7 @@ $ git clone https://github.com/YOUR_USERNAME/ts-gphoto2-driver.git
Or if you have access to this repository:

```bash
$ git checkout https://github.com/TypedProject/ts-gphoto2-driver.git
$ git checkout https://github.com/tsedio/ts-gphoto2-driver.git
```

Install npm dependencies
Expand Down
16 changes: 8 additions & 8 deletions README.md
@@ -1,13 +1,13 @@
# ts-gphoto2-driver

[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production)
[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production)
![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-driver.svg)
[![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver)
[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver)
[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

Expand Down Expand Up @@ -44,7 +44,7 @@ brew install libgphoto2
apt-get install libgphoto2-dev

// then
npm install @typedproject/gphoto2-driver
npm install @tsedio/gphoto2-driver
```

## Usage
Expand All @@ -53,7 +53,7 @@ Here an example with TypeScript (works also with pure javascript in Node.js):

```typescript
import * as Path from "path";
import { CameraList, closeQuietly } from "@typedproject/gphoto2-driver";
import { CameraList, closeQuietly } from "@tsedio/gphoto2-driver";

const cameraList = new CameraList().load();

Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -10,12 +10,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/ts-gphoto2-driver.git"
"url": "https://github.com/tsedio/ts-gphoto2-driver.git"
},
"bugs": {
"url": "https://github.com/TypedProject/ts-gphoto2-driver/issues"
"url": "https://github.com/tsedio/ts-gphoto2-driver/issues"
},
"homepage": "https://github.com/TypedProject/ts-gphoto2-driver",
"homepage": "https://github.com/tsedio/ts-gphoto2-driver",
"scripts": {
"configure": "monorepo ci configure",
"test": "yarn test:lint && yarn test:coverage",
Expand Down
6 changes: 3 additions & 3 deletions packages/gphoto2-core/package.json
Expand Up @@ -11,12 +11,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/ts-gphoto2-driver.git"
"url": "https://github.com/tsedio/ts-gphoto2-driver.git"
},
"bugs": {
"url": "https://github.com/TypedProject/ts-gphoto2-driver/issues"
"url": "https://github.com/tsedio/ts-gphoto2-driver/issues"
},
"homepage": "https://github.com/TypedProject/ts-gphoto2-driver",
"homepage": "https://github.com/tsedio/ts-gphoto2-driver",
"keywords": [
"gphoto-driver",
"typescript",
Expand Down
12 changes: 6 additions & 6 deletions packages/gphoto2-core/readme.md
@@ -1,13 +1,13 @@
# @tsed/gphoto2-core

[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production)
[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production)
![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-core.svg)
[![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-core.svg)](https://badge.fury.io/js/%tsed%2Fgphoto2-core)
[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver)
[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

Expand Down
6 changes: 3 additions & 3 deletions packages/gphoto2-driver/package.json
Expand Up @@ -11,12 +11,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/ts-gphoto2-driver.git"
"url": "https://github.com/tsedio/ts-gphoto2-driver.git"
},
"bugs": {
"url": "https://github.com/TypedProject/ts-gphoto2-driver/issues"
"url": "https://github.com/tsedio/ts-gphoto2-driver/issues"
},
"homepage": "https://github.com/TypedProject/ts-gphoto2-driver",
"homepage": "https://github.com/tsedio/ts-gphoto2-driver",
"keywords": [
"gphoto-driver",
"typescript",
Expand Down
12 changes: 6 additions & 6 deletions packages/gphoto2-driver/readme.md
@@ -1,13 +1,13 @@
# ts-gphoto2-driver

[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml)[![npm version](https://badge.fury.io/js/%40typedproject%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40typedproject%2Fgphoto2-driver)
[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production)
[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml)[![npm version](https://badge.fury.io/js/%40tsedio%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsedio%2Fgphoto2-driver)
[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production)
![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-driver.svg)
[![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver)
[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver)
[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

Expand Down
6 changes: 3 additions & 3 deletions packages/ts-gphoto2-driver/package.json
Expand Up @@ -11,12 +11,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/ts-gphoto2-driver.git"
"url": "https://github.com/tsedio/ts-gphoto2-driver.git"
},
"bugs": {
"url": "https://github.com/TypedProject/ts-gphoto2-driver/issues"
"url": "https://github.com/tsedio/ts-gphoto2-driver/issues"
},
"homepage": "https://github.com/TypedProject/ts-gphoto2-driver",
"homepage": "https://github.com/tsedio/ts-gphoto2-driver",
"keywords": [
"gphoto-driver",
"typescript",
Expand Down
12 changes: 6 additions & 6 deletions packages/ts-gphoto2-driver/readme.md
@@ -1,13 +1,13 @@
# @tsed/gphoto2-driver

[![Build & Release](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/TypedProject/ts-gphoto2-driver/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/TypedProject/ts-gphoto2-driver?branch=production)
[![Build & Release](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml/badge.svg)](https://github.com/tsedio/ts-gphoto2-driver/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/tsedio/ts-gphoto2-driver/badge.svg?branch=production)](https://coveralls.io/github/tsedio/ts-gphoto2-driver?branch=production)
![npm](https://img.shields.io/npm/dm/%40tsed%2Fgphoto2-driver.svg)
[![npm version](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver.svg)](https://badge.fury.io/js/%40tsed%2Fgphoto2-driver)
[![Dependencies](https://david-dm.org/typedproject/ts-gphoto2-driver.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/typedproject/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/typedproject/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/typedproject/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/typedproject/ts-gphoto2-driver)
[![Dependencies](https://david-dm.org/tsedio/ts-gphoto2-driver.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver#info=dependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/dev-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=devDependencies)
[![img](https://david-dm.org/tsedio/ts-gphoto2-driver/peer-status.svg)](https://david-dm.org/tsedio/ts-gphoto2-driver/#info=peerDependenciess)
[![Known Vulnerabilities](https://snyk.io/test/github/tsedio/ts-gphoto2-driver/badge.svg)](https://snyk.io/test/github/tsedio/ts-gphoto2-driver)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)

Expand Down

0 comments on commit f9f84d9

Please sign in to comment.