Skip to content

Commit

Permalink
fix appveyor windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Apr 25, 2021
1 parent 67ea85d commit 796b1a1
Show file tree
Hide file tree
Showing 24 changed files with 607 additions and 8,731 deletions.
14 changes: 13 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,20 @@
"@typescript-eslint",
"prettier"
],
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
}
}
},
"rules": {
"import/extensions": "never",
"import/extensions": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/no-var-requires": 0,
"no-unused-vars": 0,
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ install:
- npm install --global npm@latest
- set PATH=%APPDATA%\npm;%PATH%
- npm install -g yarn
- yarn install
matrix:
fast_finish: true
build: off
Expand All @@ -15,7 +16,6 @@ test_script:
- node --version
- yarn --version
- yarn test:win32
- yarn hygen
- yarn hygen init self
cache:
- '%APPDATA%\npm-cache'
Loading

0 comments on commit 796b1a1

Please sign in to comment.