Skip to content

Commit

Permalink
renaming to 'as3-to-typescript'
Browse files Browse the repository at this point in the history
  • Loading branch information
fdecampredon committed Jan 7, 2015
1 parent b64fd2e commit 9a45bb1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#as3ToTypeScript
#as3-to-typescript

> A tool that helps porting as3 codebase to typescript
Expand All @@ -8,13 +8,13 @@
Install this module with npm:

```
npm install -g as3ToTypescript
npm install -g as3-to-typescript
```

##Usage

```
as3ToTypescript <sourceDir> <outputDir>
as3-to-typescript <sourceDir> <outputDir>
```

##Note
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function readdir(dir, prefix) {
}));
}
function displayHelp() {
console.log('usage: as3ToTypescript <sourceDir> <outputDir>');
console.log('usage: as3-to-typescript <sourceDir> <outputDir>');
}
function run() {
if (process.argv.length === 2) {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "as3ToTypescript",
"name": "as3-to-typescript",
"version": "0.1.0",
"description": "convert as3 code base to typescript",
"main": "index.js",
"bin": {
"as3ToTypescript": "./bin/as3ToTypescript"
"as3-to-typescript": "./bin/as3-to-typescript"
},
"scripts": {
"test": "node test/runner generate && node test/runner compare",
Expand All @@ -21,10 +21,10 @@
],
"repository": {
"type": "git",
"url": "git://github.com/fdecampredon/as3ToTypescript.git"
"url": "git://github.com/fdecampredon/as3-to-typescript.git"
},
"bugs": {
"url": "https://github.com/fdecampredon/as3ToTypescript/issues"
"url": "https://github.com/fdecampredon/as3-to-typescript/issues"
},
"author": "François de Campredon <francois.de.campredon@gmail.com>",
"licenses" : {
Expand Down
2 changes: 1 addition & 1 deletion src/main/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function readdir(dir: string, prefix = ''): string[] {
}

function displayHelp() {
console.log('usage: as3ToTypescript <sourceDir> <outputDir>');
console.log('usage: as3-to-typescript <sourceDir> <outputDir>');
}

export function run() {
Expand Down

0 comments on commit 9a45bb1

Please sign in to comment.