You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

typescript-to-lua

Package Overview
Dependencies
Maintainers
2
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-to-lua - npm Package Versions

1245
17

1.24.0

Diff
p
perryvw
published 1.24.0 •

Changelog

Source

1.24.0

  • Optimized promises and async/await to better handle long chains of promises, like for example using await in a loop
  • Fixed a bug causing errors when accessing super properties
p
perryvw
published 1.23.0 •

Changelog

Source

1.23.0

  • Upgraded TypeScript to 5.3.3
p
perryvw
published 1.22.0 •

Changelog

Source

1.22.0

  • Added support for Number.isInteger(n)
  • Added support for afterEmit plugin hook that can be used to post-process lua files after (possibly incremental) builds
  • Fixed a bug causing @noSelfInFile sometimes to be ignored
p
perryvw
published 1.21.0 •

Changelog

Source

1.21.0

  • Added support for continue for Lua 5.0, 5.1 and universal targets.
  • Added support for the new /** @customName myCustomName **/ decorator, which allows renaming of variables and identifiers.
    • This is useful to get around names that are reserved keywords in TypeScript, but are used in Lua API
  • Fixed a bug that caused super calls in static methods to throw an error
p
perryvw
published 1.20.1 •
p
perryvw
published 1.20.0 •

Changelog

Source

1.20.0

  • Added support for Number.parseInt and Number.parseFloat (mapped to same implementation as global parseInt and parseFloat)
  • Added implementation for multiple Number constants like Number.EPSILON
  • Added support for Array.at
  • Fixed a bug when throwing an error object in a Lua environment without debug module
  • Fixed a bug causing files not to be found when returning an absolute path from a moduleResolution plugin
p
perryvw
published 1.19.3 •
p
perryvw
published 1.19.2 •
p
perryvw
published 1.19.1 •
p
perryvw
published 1.19.0 •

Changelog

Source

1.19.0

  • Added support for the new TypeScript 5.2 using keyword for explicit resource management. See the TypeScript release notes for more information.
  • Added support for the newly introduced 'copying array methods' toReversed, toSorted, toSpliced and with. These were also introduced in TypeScript 5.2, see their release notes for more information.