Skip to content

Commit 85dbd95

Browse files
ark120202Perryvw
authored andcommitted
Update outdated repo urls and add description to package.json (#499)
* Update outdated repo urls * Add description to package.json
1 parent 0274929 commit 85dbd95

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
## 0.16.0
44
* **BREAKING CHANGE:** All functions now take a `self` parameter. This means that without further action calls to declaration functions might be given an extra argument.
5-
* To remove the self parameter from a single function add `this: void` to its declaration:
5+
* To remove the self parameter from a single function add `this: void` to its declaration:
66
```declare function foo(this: void, ...)```
77
* To remove the self parameter from all methods or functions in a class/interface/namespace add `/** @noSelf */`:
88
```/** @noSelf */ interface Foo {```
99
* To remove the self parameter from all functions in a file, add `/** @noSelfInFile */` at the top.
1010

1111
---
12-
12+
1313
* **BREAKING CHANGE:** Directive `/** @luaIterator */` should now be put on types instead of on the functions returning them.
1414

1515
---
@@ -82,14 +82,14 @@
8282
* Fixed several bugs with functions and context parameters.
8383

8484
## 0.13.0
85-
* Reworked how functions are transpiled, see https://github.com/Perryvw/TypescriptToLua/wiki/Differences-Between-Functions-and-Methods
85+
* Reworked how functions are transpiled, see https://github.com/TypeScriptToLua/TypescriptToLua/wiki/Differences-Between-Functions-and-Methods
8686
* Improved handling of types extending Array.
8787
* Fixed several bugs with classes.
8888
* Fixed issues with inherited accessors.
8989

9090
## 0.12.0
9191
* Added detection of types extending Array.
92-
* Added new JSDoc-style compiler directives, deprecated the old `!` decorators, see https://github.com/Perryvw/TypescriptToLua/wiki/Compiler-Directives
92+
* Added new JSDoc-style compiler directives, deprecated the old `!` decorators, see https://github.com/TypeScriptToLua/TypescriptToLua/wiki/Compiler-Directives
9393
* Fixed bug with constructor default values.
9494
* The Lualib is no longer included when not used.
9595
* Fixed bug with unpack in LuaJIT.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "typescript-to-lua",
3-
"license": "MIT",
43
"version": "0.16.1",
5-
"repository": "https://github.com/Perryvw/TypescriptToLua",
4+
"description": "A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!",
5+
"repository": "https://github.com/TypeScriptToLua/TypeScriptToLua",
6+
"license": "MIT",
67
"keywords": [
78
"typescript",
89
"lua",

src/LuaPrinter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class LuaPrinter {
4646
let header = "";
4747

4848
if (this.options.noHeader === undefined || this.options.noHeader === false) {
49-
header += `--[[ Generated with https://github.com/Perryvw/TypescriptToLua ]]\n`;
49+
header += `--[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]\n`;
5050
}
5151

5252
if (luaLibFeatures) {

0 commit comments

Comments
 (0)