Skip to content

Commit 9349e9a

Browse files
author
Benjamin Pasero
committed
build - try to fix eslint compile issue in builds folder
1 parent df6adac commit 9349e9a

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

build/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"@types/underscore": "^1.8.9",
3131
"@types/xml2js": "0.0.33",
3232
"@typescript-eslint/experimental-utils": "~2.13.0",
33+
"@typescript-eslint/parser": "^2.12.0",
3334
"applicationinsights": "1.0.8",
3435
"azure-storage": "^2.1.0",
3536
"github-releases": "^0.4.1",

build/yarn.lock

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@
9090
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd"
9191
integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ==
9292

93+
"@types/eslint-visitor-keys@^1.0.0":
94+
version "1.0.0"
95+
resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"
96+
integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==
97+
9398
"@types/eslint@4.16.1":
9499
version "4.16.1"
95100
resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-4.16.1.tgz#19730c9fcb66b6e44742d12b27a603fabfeb2f49"
@@ -330,6 +335,15 @@
330335
resolved "https://registry.yarnpkg.com/@types/xml2js/-/xml2js-0.0.33.tgz#20c5dd6460245284d64a55690015b95e409fb7de"
331336
integrity sha1-IMXdZGAkUoTWSlVpABW5XkCft94=
332337

338+
"@typescript-eslint/experimental-utils@2.14.0":
339+
version "2.14.0"
340+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.14.0.tgz#e9179fa3c44e00b3106b85d7b69342901fb43e3b"
341+
integrity sha512-KcyKS7G6IWnIgl3ZpyxyBCxhkBPV+0a5Jjy2g5HxlrbG2ZLQNFeneIBVXdaBCYOVjvGmGGFKom1kgiAY75SDeQ==
342+
dependencies:
343+
"@types/json-schema" "^7.0.3"
344+
"@typescript-eslint/typescript-estree" "2.14.0"
345+
eslint-scope "^5.0.0"
346+
333347
"@typescript-eslint/experimental-utils@~2.13.0":
334348
version "2.13.0"
335349
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.13.0.tgz#958614faa6f77599ee2b241740e0ea402482533d"
@@ -339,6 +353,16 @@
339353
"@typescript-eslint/typescript-estree" "2.13.0"
340354
eslint-scope "^5.0.0"
341355

356+
"@typescript-eslint/parser@^2.12.0":
357+
version "2.14.0"
358+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.14.0.tgz#30fa0523d86d74172a5e32274558404ba4262cd6"
359+
integrity sha512-haS+8D35fUydIs+zdSf4BxpOartb/DjrZ2IxQ5sR8zyGfd77uT9ZJZYF8+I0WPhzqHmfafUBx8MYpcp8pfaoSA==
360+
dependencies:
361+
"@types/eslint-visitor-keys" "^1.0.0"
362+
"@typescript-eslint/experimental-utils" "2.14.0"
363+
"@typescript-eslint/typescript-estree" "2.14.0"
364+
eslint-visitor-keys "^1.1.0"
365+
342366
"@typescript-eslint/typescript-estree@2.13.0":
343367
version "2.13.0"
344368
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.13.0.tgz#a2e746867da772c857c13853219fced10d2566bc"
@@ -352,6 +376,19 @@
352376
semver "^6.3.0"
353377
tsutils "^3.17.1"
354378

379+
"@typescript-eslint/typescript-estree@2.14.0":
380+
version "2.14.0"
381+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.14.0.tgz#c67698acdc14547f095eeefe908958d93e1a648d"
382+
integrity sha512-pnLpUcMNG7GfFFfNQbEX6f1aPa5fMnH2G9By+A1yovYI4VIOK2DzkaRuUlIkbagpAcrxQHLqovI1YWqEcXyRnA==
383+
dependencies:
384+
debug "^4.1.1"
385+
eslint-visitor-keys "^1.1.0"
386+
glob "^7.1.6"
387+
is-glob "^4.0.1"
388+
lodash.unescape "4.0.1"
389+
semver "^6.3.0"
390+
tsutils "^3.17.1"
391+
355392
acorn@4.X:
356393
version "4.0.13"
357394
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"

0 commit comments

Comments
 (0)