Skip to content

Commit 483bfd4

Browse files
committed
🤖 GITHUB ACTIONS format_prettier
1 parent 3631abc commit 483bfd4

File tree

25 files changed

+10
-26
lines changed

25 files changed

+10
-26
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
// tslint:disable-next-line: max-line-length
2-
export const BROWSERLIST_REGEXP = /((CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS)[ +]+(13[_.]4|13[_.]([5-9]|\d{2,})|13[_.]7|13[_.]([8-9]|\d{2,})|(1[4-9]|[2-9]\d|\d{3,})[_.]\d+|14[_.]0|14[_.]([1-9]|\d{2,})|14[_.]4|14[_.]([5-9]|\d{2,})|14[_.]8|14[_.](9|\d{2,})|(1[5-9]|[2-9]\d|\d{3,})[_.]\d+|15[_.]0|15[_.]([1-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})[_.]\d+|16[_.]0|16[_.]([1-9]|\d{2,})|(1[7-9]|[2-9]\d|\d{3,})[_.]\d+|17[_.]0|17[_.]([1-9]|\d{2,})|(1[8-9]|[2-9]\d|\d{3,})[_.]\d+)(?:[_.]\d+)?)|((?:Chrome).*OPR\/(74|(7[5-9]|[8-9]\d|\d{3,}))\.\d+\.\d+)|(Edge\/(80|(8[1-9]|9\d|\d{3,})|83|(8[4-9]|9\d|\d{3,}))(?:\.\d+)?)|((Chromium|Chrome)\/(80|(8[1-9]|9\d|\d{3,})|83|(8[4-9]|9\d|\d{3,}))\.\d+(?:\.\d+)?)|(Version\/(13\.1|13\.([2-9]|\d{2,})|(1[4-9]|[2-9]\d|\d{3,})\.\d+|14\.0|14\.([1-9]|\d{2,})|(1[5-9]|[2-9]\d|\d{3,})\.\d+|15\.0|15\.([1-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+|16\.0|16\.([1-9]|\d{2,})|(1[7-9]|[2-9]\d|\d{3,})\.\d+|17\.0|17\.([1-9]|\d{2,})|(1[8-9]|[2-9]\d|\d{3,})\.\d+)(?:\.\d+)? Safari\/)|(Firefox\/(78|(79|[8-9]\d|\d{3,}))\.\d+\.\d+)|(Firefox\/(78|(79|[8-9]\d|\d{3,}))\.\d+(pre|[ab]\d+[a-z]*)?)/
2+
export const BROWSERLIST_REGEXP =
3+
/((CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS)[ +]+(13[_.]4|13[_.]([5-9]|\d{2,})|13[_.]7|13[_.]([8-9]|\d{2,})|(1[4-9]|[2-9]\d|\d{3,})[_.]\d+|14[_.]0|14[_.]([1-9]|\d{2,})|14[_.]4|14[_.]([5-9]|\d{2,})|14[_.]8|14[_.](9|\d{2,})|(1[5-9]|[2-9]\d|\d{3,})[_.]\d+|15[_.]0|15[_.]([1-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})[_.]\d+|16[_.]0|16[_.]([1-9]|\d{2,})|(1[7-9]|[2-9]\d|\d{3,})[_.]\d+|17[_.]0|17[_.]([1-9]|\d{2,})|(1[8-9]|[2-9]\d|\d{3,})[_.]\d+)(?:[_.]\d+)?)|((?:Chrome).*OPR\/(74|(7[5-9]|[8-9]\d|\d{3,}))\.\d+\.\d+)|(Edge\/(80|(8[1-9]|9\d|\d{3,})|83|(8[4-9]|9\d|\d{3,}))(?:\.\d+)?)|((Chromium|Chrome)\/(80|(8[1-9]|9\d|\d{3,})|83|(8[4-9]|9\d|\d{3,}))\.\d+(?:\.\d+)?)|(Version\/(13\.1|13\.([2-9]|\d{2,})|(1[4-9]|[2-9]\d|\d{3,})\.\d+|14\.0|14\.([1-9]|\d{2,})|(1[5-9]|[2-9]\d|\d{3,})\.\d+|15\.0|15\.([1-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+|16\.0|16\.([1-9]|\d{2,})|(1[7-9]|[2-9]\d|\d{3,})\.\d+|17\.0|17\.([1-9]|\d{2,})|(1[8-9]|[2-9]\d|\d{3,})\.\d+)(?:\.\d+)? Safari\/)|(Firefox\/(78|(79|[8-9]\d|\d{3,}))\.\d+\.\d+)|(Firefox\/(78|(79|[8-9]\d|\d{3,}))\.\d+(pre|[ab]\d+[a-z]*)?)/

‎src/app/core/record-person/record-person.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { catchError, first, map, retry, switchMap, tap } from 'rxjs/operators'
55
import { Person } from 'src/app/types'
66
import { UserRecordOptions } from 'src/app/types/record.local'
77

8-
98
import { ErrorHandlerService } from '../error-handler/error-handler.service'
109
import { UserService } from '../user/user.service'
1110

‎src/app/core/record-personal-identifiers/record-person-identifier.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { catchError, map, retry, switchMap, tap } from 'rxjs/operators'
55
import { PersonIdentifierEndpoint } from 'src/app/types/record-person-identifier.endpoint'
66
import { UserRecordOptions } from 'src/app/types/record.local'
77

8-
98
import { ErrorHandlerService } from '../error-handler/error-handler.service'
109
import { RecordPersonService } from '../record-person/record-person.service'
1110
import { RecordPublicSideBarService } from '../record-public-side-bar/record-public-side-bar.service'

‎src/app/core/record-works/record-works.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
_LEGACY_ContributionRoles,
2727
} from 'src/app/types/works.endpoint'
2828

29-
3029
import { ErrorHandlerService } from '../error-handler/error-handler.service'
3130
import { VisibilityStrings } from '../../types/common.endpoint'
3231
import { DEFAULT_PAGE_SIZE, EXTERNAL_ID_TYPE_WORK } from 'src/app/constants'

‎src/app/core/register/register.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
RegisterForm,
1212
} from 'src/app/types/register.endpoint'
1313

14-
1514
import { ErrorHandlerService } from '../error-handler/error-handler.service'
1615
import { UserService } from '../user/user.service'
1716
import { RegisterBackendValidatorMixin } from './register.backend-validators'

‎src/app/core/register2/register2.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
RegisterForm,
1212
} from 'src/app/types/register.endpoint'
1313

14-
1514
import { ERROR_REPORT } from 'src/app/errors'
1615
import { objectToUrlParameters } from '../../constants'
1716
import { ReactivationLocal } from '../../types/reactivation.local'

‎src/app/core/robots-meta-tags/robots-meta-tags.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Injectable } from '@angular/core'
22
import { Meta } from '@angular/platform-browser'
33

4-
54
@Injectable({
65
providedIn: 'root',
76
})

‎src/app/core/togglz/togglz.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { map, switchMapTo } from 'rxjs/operators'
55
import { Config } from 'src/app/types/togglz.endpoint'
66
import { MaintenanceMessage } from 'src/app/types/togglz.local'
77

8-
98
import { UserService } from '..'
109

1110
@Injectable({

‎src/app/core/user/user.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ import {
4141
import { ThirdPartyAuthData } from 'src/app/types/sign-in-data.endpoint'
4242
import { Delegator } from 'src/app/types/trusted-individuals.endpoint'
4343

44-
4544
import { UserStatus } from '../../types/userStatus.endpoint'
4645
import { DiscoService } from '../disco/disco.service'
4746
import { ErrorHandlerService } from '../error-handler/error-handler.service'

‎src/app/core/wordpress/wordpress.service.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { PlatformInfoService } from 'src/app/cdk/platform-info'
99
import { WINDOW_PROVIDERS } from 'src/app/cdk/window'
1010
import { LOCALE_ID } from '@angular/core'
1111

12-
1312
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'
1413

1514
describe('WordpressService', () => {

0 commit comments

Comments
 (0)