Skip to content

Commit 28fe6e1

Browse files
authored
#57 new typescript version bug (#59)
* Fixes the bug in the newest typescript * Beta package * Updates node version * Stable version * Removes e2e for time being * Bumps up eslint * Bumps up the node version * Bumps up prettier
1 parent 4754a71 commit 28fe6e1

33 files changed

+24866
-5997
lines changed

.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"root": true,
33
"parser": "@typescript-eslint/parser",
44
"plugins": ["@typescript-eslint"],
5+
"ignorePatterns": ["sample-project"],
56
"extends": [
67
"eslint:recommended",
78
"plugin:@typescript-eslint/eslint-recommended",

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Use Node.js 14.x
10+
- name: Use Node.js 15.x
1111
uses: actions/setup-node@v2
1212
with:
13-
node-version: '14.x'
13+
node-version: '15.x'
1414
- run: npm i
1515
- run: npm run lint
1616
- run: npm run prettier:ci
@@ -23,10 +23,10 @@ jobs:
2323

2424
steps:
2525
- uses: actions/checkout@v2
26-
- name: Use Node.js 14.x
26+
- name: Use Node.js 15.x
2727
uses: actions/setup-node@v2
2828
with:
29-
node-version: '14.x'
29+
node-version: '15.x'
3030
- run: npm i
3131
- run: npm run build
3232
- run: npm run test

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# Setup .npmrc file to publish to npm
1313
- uses: actions/setup-node@v2
1414
with:
15-
node-version: '12.x'
15+
node-version: '14.x'
1616
registry-url: 'https://registry.npmjs.org'
1717
- run: npm install
1818
- run: npm run build

e2e/fixtures/default-config/.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

e2e/fixtures/default-config/ignored.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

e2e/fixtures/default-config/strict.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

e2e/fixtures/default-config/tsconfig.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

e2e/fixtures/non-root-config/nested/ignored.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

e2e/fixtures/non-root-config/nested/strict.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

e2e/fixtures/non-root-config/nested/tsconfig.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)