typescript-to-lua 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,6 +14,7 @@ const resolver = resolve.ResolverFactory.createResolver({
|
|
|
14
14
|
enforceExtension: true,
|
|
15
15
|
fileSystem: { ...new resolve.CachedInputFileSystem(fs) },
|
|
16
16
|
useSyncFileSystemCalls: true,
|
|
17
|
+
symlinks: false, // Do not resolve symlinks to their original paths (that breaks node_modules detection)
|
|
17
18
|
});
|
|
18
19
|
class ResolutionContext {
|
|
19
20
|
constructor(program, options, emitHost) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-to-lua",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "A generic TypeScript to Lua transpiler. Write your code in TypeScript and publish Lua!",
|
|
5
5
|
"repository": "https://github.com/TypeScriptToLua/TypeScriptToLua",
|
|
6
6
|
"homepage": "https://typescripttolua.github.io/",
|