@@ -60,16 +60,16 @@ test({
60
60
} ,
61
61
'// Expire Condition [2000-01-01]: new term name' ,
62
62
'// TODO [>2000]: We sure didnt past this version' ,
63
- '// TODO [-empathic ]: We actually use this.' ,
63
+ '// TODO [-find-up-simple ]: We actually use this.' ,
64
64
'// TODO [+popura]: I think we wont need a broken package.' ,
65
65
'// TODO [semver@>1000]: Welp hopefully we wont get at that.' ,
66
66
'// TODO [semver@>=1000]: Welp hopefully we wont get at that.' ,
67
67
'// TODO [@lubien/fixture-beta-package@>=1.0.0]: we are using a pre-release' ,
68
68
'// TODO [@lubien/fixture-beta-package@>=1.0.0-gamma.1]: beta comes first from gamma' ,
69
69
'// TODO [@lubien/fixture-beta-package@>=1.0.0-beta.2]: we are in beta.1' ,
70
- '// TODO [2200-12-12, -empathic ]: Combo' ,
71
- '// TODO [2200-12-12, -empathic , +popura]: Combo' ,
72
- '// TODO [2200-12-12, -empathic , +popura, semver@>=1000]: Combo' ,
70
+ '// TODO [2200-12-12, -find-up-simple ]: Combo' ,
71
+ '// TODO [2200-12-12, -find-up-simple , +popura]: Combo' ,
72
+ '// TODO [2200-12-12, -find-up-simple , +popura, semver@>=1000]: Combo' ,
73
73
'// TODO [engine:node@>=100]: When we start supporting only >= 10' ,
74
74
`// TODO [2200-12-12]: Multiple
75
75
// TODO [2200-12-12]: Lines` ,
@@ -209,24 +209,24 @@ test({
209
209
errors : [ reachedPackageVersionError ( '>=1' , 'if your package.json version is >=1' ) ] ,
210
210
} ,
211
211
{
212
- code : '// TODO [+empathic ]: when you install `empathic `' ,
213
- errors : [ havePackageError ( 'empathic ' , 'when you install `empathic `' ) ] ,
212
+ code : '// TODO [+find-up-simple ]: when you install `find-up-simple `' ,
213
+ errors : [ havePackageError ( 'find-up-simple ' , 'when you install `find-up-simple `' ) ] ,
214
214
} ,
215
215
{
216
216
code : '// TODO [-popura]: when you uninstall `popura`' ,
217
217
errors : [ dontHavePackageError ( 'popura' , 'when you uninstall `popura`' ) ] ,
218
218
} ,
219
219
{
220
- code : '// TODO [empathic @>=1]: when `empathic ` version is >= 1' ,
221
- errors : [ versionMatchesError ( 'empathic >= 1' , 'when `empathic ` version is >= 1' ) ] ,
220
+ code : '// TODO [find-up-simple @>=1]: when `find-up-simple ` version is >= 1' ,
221
+ errors : [ versionMatchesError ( 'find-up-simple >= 1' , 'when `find-up-simple ` version is >= 1' ) ] ,
222
222
} ,
223
223
{
224
224
code : '// TODO [engine:node@>=8]: when support is for node >= 8' ,
225
225
errors : [ engineMatchesError ( 'node>=8' , 'when support is for node >= 8' ) ] ,
226
226
} ,
227
227
{
228
- code : '// TODO [empathic @>0.2.0]: when `empathic ` version is > 0.2.0' ,
229
- errors : [ versionMatchesError ( 'empathic > 0.2.0' , 'when `empathic ` version is > 0.2.0' ) ] ,
228
+ code : '// TODO [find-up-simple @>0.2.0]: when `find-up-simple ` version is > 0.2.0' ,
229
+ errors : [ versionMatchesError ( 'find-up-simple > 0.2.0' , 'when `find-up-simple ` version is > 0.2.0' ) ] ,
230
230
} ,
231
231
{
232
232
code : '// TODO [@lubien/fixture-beta-package@>=1.0.0-alfa.1]: when `@lubien/fixture-beta-package` version is >= 1.0.0-alfa.1' ,
@@ -323,16 +323,16 @@ test({
323
323
] ,
324
324
} ,
325
325
{
326
- code : '// TODO [-popura, empathic @>=1]: Combine not having a package with version match' ,
326
+ code : '// TODO [-popura, find-up-simple @>=1]: Combine not having a package with version match' ,
327
327
errors : [
328
328
dontHavePackageError ( 'popura' , 'Combine not having a package with version match' ) ,
329
- versionMatchesError ( 'empathic >= 1' , 'Combine not having a package with version match' ) ,
329
+ versionMatchesError ( 'find-up-simple >= 1' , 'Combine not having a package with version match' ) ,
330
330
] ,
331
331
} ,
332
332
{
333
- code : '// TODO [+empathic , -popura]: Combine presence/absence of packages' ,
333
+ code : '// TODO [+find-up-simple , -popura]: Combine presence/absence of packages' ,
334
334
errors : [
335
- havePackageError ( 'empathic ' , 'Combine presence/absence of packages' ) ,
335
+ havePackageError ( 'find-up-simple ' , 'Combine presence/absence of packages' ) ,
336
336
dontHavePackageError ( 'popura' , 'Combine presence/absence of packages' ) ,
337
337
] ,
338
338
} ,
@@ -352,13 +352,13 @@ test({
352
352
] ,
353
353
} ,
354
354
{
355
- code : '// HUGETODO [semver @>=1, engine:node@>=8, 2000-01-01, -popura, >1, +empathic, empathic @>=1]: Big mix' ,
355
+ code : '// HUGETODO [semver @>=1, engine:node@>=8, 2000-01-01, -popura, >1, +find-up-simple, find-up-simple @>=1]: Big mix' ,
356
356
errors : [
357
357
expiredTodoError ( '2000-01-01' , 'Big mix' ) ,
358
358
reachedPackageVersionError ( '>1' , 'Big mix' ) ,
359
359
dontHavePackageError ( 'popura' , 'Big mix' ) ,
360
- havePackageError ( 'empathic ' , 'Big mix' ) ,
361
- versionMatchesError ( 'empathic >= 1' , 'Big mix' ) ,
360
+ havePackageError ( 'find-up-simple ' , 'Big mix' ) ,
361
+ versionMatchesError ( 'find-up-simple >= 1' , 'Big mix' ) ,
362
362
engineMatchesError ( 'node>=8' , 'Big mix' ) ,
363
363
removeWhitespaceError ( 'semver @>=1' , 'Big mix' ) ,
364
364
] ,
0 commit comments