@@ -8,8 +8,7 @@ module.exports = [
88 } ,
99 {
1010 repository : 'https://github.com/avajs/ava' ,
11- extraArguments : [
12- '--ignore-pattern' ,
11+ ignore : [
1312 'test/node_modules'
1413 ]
1514 } ,
@@ -48,53 +47,41 @@ module.exports = [
4847 'https://github.com/sindresorhus/pageres' ,
4948 {
5049 repository : 'https://github.com/sindresorhus/got' ,
51- extraArguments : [
52- '--ignore-pattern' ,
53- 'documentation/examples/gh-got.js' // This file use `package` keyword as variable
50+ ignore : [
51+ // This file use `package` keyword as variable
52+ 'documentation/examples/gh-got.js'
5453 ]
5554 } ,
5655 'https://github.com/eslint/eslint' ,
5756 {
5857 repository : 'https://github.com/prettier/prettier' ,
59- extraArguments : [
60- '--ignore-pattern' ,
58+ ignore : [
6159 'tests/**'
6260 ]
6361 } ,
6462 'https://github.com/facebook/react' ,
6563 {
6664 repository : 'https://github.com/angular/angular' ,
67- extraArguments : [
68- '--ignore-pattern' ,
65+ ignore : [
6966 'aio/content/examples/animations/src/app/open-close.component.3.ts' ,
70- '--ignore-pattern' ,
7167 'aio/content/examples/router/src/app/app-routing.module.9.ts' ,
72-
73- '--ignore-pattern' ,
7468 'aio/tools/transforms/templates/data-module.template.js' ,
75- '--ignore-pattern' ,
7669 'aio/tools/transforms/authors-package/index.js' , // This file use `package` keyword as variable
77-
78- '--ignore-pattern' ,
7970 'packages/compiler-cli/test/**' ,
80-
81- '--ignore-pattern' ,
8271 'tools/**'
8372 ]
8473 } ,
8574 {
8675 repository : 'https://github.com/microsoft/typescript' ,
87- extraArguments : [
76+ ignore : [
8877 // These file use `'\033'`
89- '--ignore-pattern' ,
9078 'build/**'
9179 ]
9280 } ,
9381 {
9482 repository : 'https://github.com/microsoft/vscode' ,
95- extraArguments : [
83+ ignore : [
9684 // This file use `'\033'`
97- '--ignore-pattern' ,
9885 'build/**'
9986 ]
10087 } ,
@@ -108,33 +95,28 @@ module.exports = [
10895 'https://github.com/gatsbyjs/gatsby' ,
10996 {
11097 repository : 'https://github.com/puppeteer/puppeteer' ,
111- extraArguments : [
98+ ignore : [
11299 // Parser error on `await page.evaluate(() => delete Node);`
113100 // https://github.com/puppeteer/puppeteer/blob/0b1a9ceee2f05f534f0d50079ece172d627a93c7/test/jshandle.spec.js#L151
114- '--ignore-pattern' ,
115101 'test/jshandle.spec.js' ,
116102
117103 // `package` keyword
118104 // https://github.com/puppeteer/puppeteer/blob/0b1a9ceee2f05f534f0d50079ece172d627a93c7/utils/apply_next_version.js#L17
119- '--ignore-pattern' ,
120105 'utils/apply_next_version.js'
121106 ]
122107 } ,
123108 {
124109 repository : 'https://github.com/vercel/next.js' ,
125- extraArguments : [
126- '--ignore-pattern' ,
110+ ignore : [
127111 'examples/**' ,
128112
129113 // These files use `>` in jsx
130- '--ignore-pattern' ,
131114 'test/integration/**'
132115 ]
133116 } ,
134117 {
135118 repository : 'https://github.com/chakra-ui/chakra-ui' ,
136- extraArguments : [
137- '--ignore-pattern' ,
119+ ignore : [
138120 'scripts/create-package.js' // This file use `package` keyword as variable
139121 ]
140122 } ,
@@ -144,16 +126,14 @@ module.exports = [
144126 // #912
145127 {
146128 repository : 'https://github.com/microsoft/fluentui' ,
147- extraArguments : [
148- '--ignore-pattern' ,
129+ ignore : [
149130 'scripts/publish-beta.js' // This file use `package` keyword as variable
150131 ]
151132 } ,
152133 // #902
153134 {
154135 repository : 'https://github.com/reakit/reakit' ,
155- extraArguments : [
156- '--ignore-pattern' ,
136+ ignore : [
157137 'packages/reakit/jest.config.js' // This file use `package` keyword as variable
158138 ]
159139 } ,
@@ -169,15 +149,13 @@ module.exports = [
169149 const {
170150 repository,
171151 name = repository . split ( '/' ) . pop ( ) ,
172- path = '' ,
173- extraArguments = [ ]
152+ ignore = [ ]
174153 } = project ;
175154
176155 return {
177156 ...project ,
178157 name,
179158 repository,
180- path,
181- extraArguments
159+ ignore
182160 } ;
183161} ) ;
0 commit comments