Skip to content
This repository has been archived by the owner on Feb 18, 2019. It is now read-only.

Commit

Permalink
feat(dtsm): DT repo move borisyankov to DT org
Browse files Browse the repository at this point in the history
  • Loading branch information
vvakame committed Nov 4, 2015
1 parent 362b1c2 commit 631481a
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 19 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The .d.ts manager

.d.ts is TypeScript definition file.
[DefinitelyTyped!](https://github.com/borisyankov/DefinitelyTyped)
[DefinitelyTyped!](https://github.com/DefinitelyTyped/DefinitelyTyped)

## Install

Expand All @@ -20,7 +20,7 @@ please install git client.
# fetch from remote repository
$ dtsm fetch
fetching...
fetching https://github.com/borisyankov/DefinitelyTyped.git
fetching https://github.com/DefinitelyTyped/DefinitelyTyped.git
# search .d.ts
$ dtsm search atom
Expand Down Expand Up @@ -84,7 +84,7 @@ write to dtsm.json
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down Expand Up @@ -120,7 +120,7 @@ $ cat dtsm.json
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down Expand Up @@ -207,7 +207,7 @@ $ cat dtsm.json
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
},
{
Expand All @@ -230,7 +230,7 @@ $ cat dtsm.json
}
$ dtsm install
jquery/jquery.d.ts borisyankov/DefinitelyTyped#0605eb
jquery/jquery.d.ts DefinitelyTyped/DefinitelyTyped#0605eb
gapidts/bigquery-v2-browser.d.ts vvakame/gapidts#4edbcc
└── gapidts/googleapis-browser-common.d.ts
Expand Down Expand Up @@ -283,7 +283,7 @@ $ cat dtsm.json
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion dtsm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion example/basic/dtsm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion example/mixedRepisitory/dtsm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
},
{
Expand Down
2 changes: 1 addition & 1 deletion lib/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function createManager(options: m.Options = {}): Promise<Manager> {
export default class Manager {
static defaultConfigFile = process.cwd() + "/dtsm.json";
static defaultRootDir = "~/.dtsm";
static defaultRepo = "https://github.com/borisyankov/DefinitelyTyped.git";
static defaultRepo = "https://github.com/DefinitelyTyped/DefinitelyTyped.git";
static defaultRef = "master";
static defaultPath = "typings";
static defaultBundleFile = "bundle.d.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/cliSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe("command line interface", () => {
assert(!err);
assert(exit === 0);

// https://github.com/borisyankov/DefinitelyTyped has greater than 500 .d.ts files
// https://github.com/DefinitelyTyped/DefinitelyTyped has greater than 500 .d.ts files
assert(500 < stdout.length);

done();
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/dtsm-installFromFile.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/dtsm-link.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/dtsm-uninstall.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/dtsm-update.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/dtsm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"repos": [
{
"url": "https://github.com/borisyankov/DefinitelyTyped.git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"ref": "master"
}
],
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"./typings/bundle.d.ts",
"./typings/empower/empower.d.ts",
"./typings/insight/insight.d.ts",
"./typings/jquery/jquery.d.ts",
"./typings/mkdirp/mkdirp.d.ts",
"./typings/mocha/mocha.d.ts",
"./typings/nexpect/nexpect.d.ts",
Expand All @@ -53,4 +52,4 @@
"./typings/which/which.d.ts",
"./node_modules/typescript/lib/lib.es6.d.ts"
]
}
}

0 comments on commit 631481a

Please sign in to comment.