File tree Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Expand file tree Collapse file tree 3 files changed +7
-15
lines changed Original file line number Diff line number Diff line change 1
- 0.0.9
1
+ 0.0.10
Original file line number Diff line number Diff line change @@ -28,13 +28,10 @@ module.exports = {
28
28
29
29
// PHP
30
30
'!clients/algoliasearch-client-php/*' ,
31
- '!clients/algoliasearch-client-php/lib/*' ,
32
- '!clients/algoliasearch-client-php/lib/Cache/**' ,
33
- '!clients/algoliasearch-client-php/lib/Exceptions/**' ,
34
- '!clients/algoliasearch-client-php/lib/Http/**' ,
35
- '!clients/algoliasearch-client-php/lib/Log/**' ,
36
- '!clients/algoliasearch-client-php/lib/RequestOptions/**' ,
37
- '!clients/algoliasearch-client-php/lib/RetryStrategy/**' ,
38
- '!clients/algoliasearch-client-php/lib/Support/**' ,
31
+ 'clients/algoliasearch-client-php/lib/Api/*' ,
32
+ 'clients/algoliasearch-client-php/lib/Model/**' ,
33
+ 'clients/algoliasearch-client-php/lib/Configuration/*' ,
34
+ 'clients/algoliasearch-client-php/lib/ApiException.php' ,
35
+ 'clients/algoliasearch-client-php/lib/ObjectSerializer.php' ,
39
36
] ,
40
37
} ;
Original file line number Diff line number Diff line change @@ -128,12 +128,7 @@ async function getSpecMatrix(): Promise<void> {
128
128
} ;
129
129
130
130
for ( const client of CLIENTS ) {
131
- // `algoliasearch` is an aggregation of client
132
- if ( client === 'algoliasearch' ) {
133
- continue ;
134
- }
135
-
136
- // The `lite` spec is created by the `search` spec
131
+ // The `algoliasearch` spec is created by the `search` spec, for the `lite` JavaScript client.
137
132
const bundledSpecName = client === 'algoliasearch' ? 'search' : client ;
138
133
139
134
matrix . toRun . push ( client ) ;
You can’t perform that action at this time.
0 commit comments