File tree Expand file tree Collapse file tree 7 files changed +25
-39
lines changed Expand file tree Collapse file tree 7 files changed +25
-39
lines changed Original file line number Diff line number Diff line change 1
- /src /types /**
2
1
/lib /**
Original file line number Diff line number Diff line change 1
1
# Logs
2
- logs
3
2
* .log
4
- npm-debug.log *
5
3
4
+ # Package artifacts
6
5
lib
7
- ! test /** /lib
6
+
7
+ # Package archive used by e2e tests
8
8
fork-ts-checker-webpack-plugin.tgz
9
9
10
10
# Coverage directory used by tools like istanbul
11
11
coverage
12
12
13
- # Tmp directory for integration test
14
- tmp
15
-
16
13
# Dependency directories
17
14
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
26
15
27
16
# Editor directories and files
28
17
.idea
Original file line number Diff line number Diff line change 1
- 6.9.11
1
+ 10
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,31 +6,31 @@ module.exports = {
6
6
types : {
7
7
feat : {
8
8
description : 'A new feature' ,
9
- value : 'feat'
9
+ value : 'feat' ,
10
10
} ,
11
11
fix : {
12
12
description : 'A bug fix' ,
13
- value : 'fix'
13
+ value : 'fix' ,
14
14
} ,
15
15
refactor : {
16
16
description : 'A code change that neither adds a feature or fixes a bug' ,
17
- value : 'refactor'
17
+ value : 'refactor' ,
18
18
} ,
19
19
perf : {
20
20
description : 'A code change that improves performance' ,
21
- value : 'perf'
21
+ value : 'perf' ,
22
22
} ,
23
23
test : {
24
24
description : 'Adding missing tests' ,
25
- value : 'test'
25
+ value : 'test' ,
26
26
} ,
27
27
chore : {
28
28
description : 'Build process, CI or auxiliary tool changes' ,
29
- value : 'chore'
29
+ value : 'chore' ,
30
30
} ,
31
31
docs : {
32
32
description : 'Documentation only changes' ,
33
- value : 'docs'
34
- }
35
- }
33
+ value : 'docs' ,
34
+ } ,
35
+ } ,
36
36
} ;
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
branches : [
3
3
'master' ,
4
+ {
5
+ name : 'alpha' ,
6
+ prerelease : true ,
7
+ } ,
4
8
{
5
9
name : 'beta' ,
6
- prerelease : true
7
- }
10
+ prerelease : true ,
11
+ } ,
8
12
] ,
9
13
plugins : [
10
14
[
@@ -18,12 +22,12 @@ module.exports = {
18
22
{ type : 'fix' , release : 'patch' } ,
19
23
{ type : 'perf' , release : 'patch' } ,
20
24
{ type : 'refactor' , release : 'patch' } ,
21
- { type : 'docs' , release : 'patch' }
22
- ]
23
- }
25
+ { type : 'docs' , release : 'patch' } ,
26
+ ] ,
27
+ } ,
24
28
] ,
25
29
'@semantic-release/release-notes-generator' ,
26
30
'@semantic-release/npm' ,
27
- '@semantic-release/github'
28
- ]
31
+ '@semantic-release/github' ,
32
+ ] ,
29
33
} ;
Original file line number Diff line number Diff line change @@ -42,5 +42,6 @@ export interface Options {
42
42
// directly used by this package and are instead just passed to eslint.
43
43
// We do this in order to avoid a dependency on @types /eslint (since the use
44
44
// of eslint is optional) and to avoid copying types from @types/eslint.
45
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
45
46
[ key : string ] : any ;
46
47
}
You can’t perform that action at this time.
0 commit comments