Skip to content

Commit 8327e79

Browse files
committed
feat: upgrade typescript-tstl-plugin
Fixes #1.
1 parent d4da9ad commit 8327e79

File tree

3 files changed

+39
-23
lines changed

3 files changed

+39
-23
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-node@v1
11+
- uses: actions/checkout@v2
12+
- name: Use Node.js 12.13.1
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: 12.13.1
1316
- run: yarn --frozen-lockfile
1417
- run: yarn lint

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lua"
2020
],
2121
"engines": {
22-
"vscode": "^1.33.0"
22+
"vscode": "^1.45.0"
2323
},
2424
"contributes": {
2525
"typescriptServerPlugins": [
@@ -53,7 +53,7 @@
5353
"trailingComma": "all"
5454
},
5555
"dependencies": {
56-
"typescript-tstl-plugin": "^0.1.0"
56+
"typescript-tstl-plugin": "^0.2.0"
5757
},
5858
"devDependencies": {
5959
"prettier": "^1.17.0"

yarn.lock

Lines changed: 32 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ normalize-path@^2.1.1:
3434
dependencies:
3535
remove-trailing-separator "^1.0.1"
3636

37+
path-parse@^1.0.6:
38+
version "1.0.6"
39+
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
40+
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
41+
3742
prettier@^1.17.0:
3843
version "1.17.0"
3944
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.17.0.tgz#53b303676eed22cc14a9f0cec09b477b3026c008"
@@ -56,36 +61,44 @@ resolve-global@^1.0.0:
5661
dependencies:
5762
global-dirs "^0.1.1"
5863

64+
resolve@^1.15.1:
65+
version "1.17.0"
66+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
67+
integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
68+
dependencies:
69+
path-parse "^1.0.6"
70+
5971
source-map@^0.7.3:
6072
version "0.7.3"
6173
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
6274
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
6375

64-
tslib@^1.9.3:
65-
version "1.9.3"
66-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
67-
integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==
76+
tslib@^2.0.0:
77+
version "2.0.0"
78+
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3"
79+
integrity sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g==
6880

69-
typescript-to-lua@^0.20.0:
70-
version "0.20.0"
71-
resolved "https://registry.yarnpkg.com/typescript-to-lua/-/typescript-to-lua-0.20.0.tgz#03bd342e5813eb33678bfd5f502240a7e9dcb36f"
72-
integrity sha512-JivMFrRlV1/tpvanh+JJg9YBGx7z02yb0mDPLCNRvMPKXZefLT0HuCHPeKHtbcNsMH5Z2nQdtwlokZKdcXuxJA==
81+
typescript-to-lua@^0.35.0:
82+
version "0.35.0"
83+
resolved "https://registry.yarnpkg.com/typescript-to-lua/-/typescript-to-lua-0.35.0.tgz#abe468401ff7679abbd267c4faecfeef81bf0857"
84+
integrity sha512-r79LfK1nWauFO4SR7q7pMCYjwW412Z17yx1WKp00SnVmYNwbm4fB/TsJuZe5jLtpZxAuGG8nVqtJEAsU5d1Bhg==
7385
dependencies:
86+
resolve "^1.15.1"
7487
source-map "^0.7.3"
75-
typescript "^3.4.5"
88+
typescript "^3.9.2"
7689

77-
typescript-tstl-plugin@^0.1.0:
78-
version "0.1.0"
79-
resolved "https://registry.yarnpkg.com/typescript-tstl-plugin/-/typescript-tstl-plugin-0.1.0.tgz#61bd756fd0d867cdcf5096202d677042dc27c37a"
80-
integrity sha512-zyGPph8/20Mqf3T9SHsxAnlInk0Yd9hBNiMo2gR0pQhhBnUxtAC+hzTJF2qXkwpvwxTTHozvnBz8pN3l/egbjg==
90+
typescript-tstl-plugin@^0.2.0:
91+
version "0.2.0"
92+
resolved "https://registry.yarnpkg.com/typescript-tstl-plugin/-/typescript-tstl-plugin-0.2.0.tgz#370e88741201190fe471b0726268740c1685990b"
93+
integrity sha512-Geh9YW2+t+USO3o6dDMNmhRpCa9kfIeQkCsU3BjjlQaDS5XzmMXOPOETdmo1IAbF97TSXJdqJEkWXjcZhlUhOA==
8194
dependencies:
8295
mock-require "^3.0.3"
8396
resolve-from "^5.0.0"
8497
resolve-global "^1.0.0"
85-
tslib "^1.9.3"
86-
typescript-to-lua "^0.20.0"
98+
tslib "^2.0.0"
99+
typescript-to-lua "^0.35.0"
87100

88-
typescript@^3.4.5:
89-
version "3.4.5"
90-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.5.tgz#2d2618d10bb566572b8d7aad5180d84257d70a99"
91-
integrity sha512-YycBxUb49UUhdNMU5aJ7z5Ej2XGmaIBL0x34vZ82fn3hGvD+bgrMrVDpatgz2f7YxUMJxMkbWxJZeAvDxVe7Vw==
101+
typescript@^3.9.2:
102+
version "3.9.6"
103+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.6.tgz#8f3e0198a34c3ae17091b35571d3afd31999365a"
104+
integrity sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==

0 commit comments

Comments
 (0)