Skip to content

Commit 4479864

Browse files
committed
chore: add alpha branch to pre-release channels
1 parent 9584c02 commit 4479864

File tree

7 files changed

+25
-39
lines changed

7 files changed

+25
-39
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
/src/types/**
21
/lib/**

.gitignore

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,17 @@
11
# Logs
2-
logs
32
*.log
4-
npm-debug.log*
53

4+
# Package artifacts
65
lib
7-
!test/**/lib
6+
7+
# Package archive used by e2e tests
88
fork-ts-checker-webpack-plugin.tgz
99

1010
# Coverage directory used by tools like istanbul
1111
coverage
1212

13-
# Tmp directory for integration test
14-
tmp
15-
1613
# Dependency directories
1714
node_modules
18-
jspm_packages
19-
20-
# Optional npm cache directory
21-
.npm
22-
package-lock.json
23-
24-
# Optional REPL history
25-
.node_repl_history
2615

2716
# Editor directories and files
2817
.idea

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.9.11
1+
10

babel.config.js

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

changelog.config.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@ module.exports = {
66
types: {
77
feat: {
88
description: 'A new feature',
9-
value: 'feat'
9+
value: 'feat',
1010
},
1111
fix: {
1212
description: 'A bug fix',
13-
value: 'fix'
13+
value: 'fix',
1414
},
1515
refactor: {
1616
description: 'A code change that neither adds a feature or fixes a bug',
17-
value: 'refactor'
17+
value: 'refactor',
1818
},
1919
perf: {
2020
description: 'A code change that improves performance',
21-
value: 'perf'
21+
value: 'perf',
2222
},
2323
test: {
2424
description: 'Adding missing tests',
25-
value: 'test'
25+
value: 'test',
2626
},
2727
chore: {
2828
description: 'Build process, CI or auxiliary tool changes',
29-
value: 'chore'
29+
value: 'chore',
3030
},
3131
docs: {
3232
description: 'Documentation only changes',
33-
value: 'docs'
34-
}
35-
}
33+
value: 'docs',
34+
},
35+
},
3636
};

release.config.js

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
module.exports = {
22
branches: [
33
'master',
4+
{
5+
name: 'alpha',
6+
prerelease: true,
7+
},
48
{
59
name: 'beta',
6-
prerelease: true
7-
}
10+
prerelease: true,
11+
},
812
],
913
plugins: [
1014
[
@@ -18,12 +22,12 @@ module.exports = {
1822
{ type: 'fix', release: 'patch' },
1923
{ type: 'perf', release: 'patch' },
2024
{ type: 'refactor', release: 'patch' },
21-
{ type: 'docs', release: 'patch' }
22-
]
23-
}
25+
{ type: 'docs', release: 'patch' },
26+
],
27+
},
2428
],
2529
'@semantic-release/release-notes-generator',
2630
'@semantic-release/npm',
27-
'@semantic-release/github'
28-
]
31+
'@semantic-release/github',
32+
],
2933
};

src/types/eslint.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ export interface Options {
4242
// directly used by this package and are instead just passed to eslint.
4343
// We do this in order to avoid a dependency on @types/eslint (since the use
4444
// of eslint is optional) and to avoid copying types from @types/eslint.
45+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
4546
[key: string]: any;
4647
}

0 commit comments

Comments
 (0)