mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:31:43 +00:00
Update dependency prettier to ^2.1.2 (#13526)
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Juliana Peña <me@julip.co>
This commit is contained in:
parent
713b4e1f6a
commit
25d50d263e
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -54,7 +54,7 @@
|
||||
"args": ["webpack"],
|
||||
"env": {
|
||||
// prettier-ignore
|
||||
"TS_NODE_COMPILER_OPTIONS": "{\"module\":\"commonjs\"}"
|
||||
"TS_NODE_COMPILER_OPTIONS": "{\"module\":\"commonjs\"}",
|
||||
},
|
||||
"internalConsoleOptions": "openOnSessionStart",
|
||||
},
|
||||
|
||||
@ -5,8 +5,9 @@ import { LocalStorageItems } from './types'
|
||||
/**
|
||||
* An RxJS subject that is backed by an extension storage item.
|
||||
*/
|
||||
// eslint-disable-next-line rxjs/no-subclass
|
||||
export class ExtensionStorageSubject<T extends keyof LocalStorageItems> extends Observable<LocalStorageItems[T]>
|
||||
export class ExtensionStorageSubject<T extends keyof LocalStorageItems>
|
||||
// eslint-disable-next-line rxjs/no-subclass
|
||||
extends Observable<LocalStorageItems[T]>
|
||||
implements NextObserver<LocalStorageItems[T]>, Pick<BehaviorSubject<LocalStorageItems[T]>, 'value'> {
|
||||
constructor(private key: T, defaultValue: LocalStorageItems[T]) {
|
||||
super(subscriber => {
|
||||
|
||||
@ -222,7 +222,7 @@
|
||||
"p-retry": "^4.2.0",
|
||||
"postcss-focus-visible": "^5.0.0",
|
||||
"postcss-loader": "^3.0.0",
|
||||
"prettier": "^2.0.5",
|
||||
"prettier": "^2.1.2",
|
||||
"puppeteer": "5.2.1",
|
||||
"puppeteer-firefox": "^0.5.1",
|
||||
"raw-loader": "^4.0.1",
|
||||
|
||||
@ -8,8 +8,9 @@ import { filter } from 'rxjs/operators'
|
||||
* "storage" event per the Web Storage API specification). To emit for changes in the same window, call
|
||||
* {@link LocalStorageSubject#next}.
|
||||
*/
|
||||
// eslint-disable-next-line rxjs/no-subclass
|
||||
export class LocalStorageSubject<T> extends Observable<T>
|
||||
export class LocalStorageSubject<T>
|
||||
// eslint-disable-next-line rxjs/no-subclass
|
||||
extends Observable<T>
|
||||
implements NextObserver<T>, Pick<BehaviorSubject<T>, 'value'> {
|
||||
constructor(private key: string, private defaultValue: T) {
|
||||
super(subscriber => {
|
||||
|
||||
14
yarn.lock
14
yarn.lock
@ -2728,8 +2728,7 @@
|
||||
integrity sha512-KWxkyphmlwam8kfYPSmoitKQRMGQCsr1ZRmNZgijT7ABKaVyk/+I5ezt2J213tM04Hi0vyg4L7iH1VCkNvm2Jw==
|
||||
|
||||
"@sourcegraph/extension-api-types@link:packages/@sourcegraph/extension-api-types":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
version "2.1.0"
|
||||
|
||||
"@sourcegraph/prettierrc@^3.0.3":
|
||||
version "3.0.3"
|
||||
@ -18168,10 +18167,10 @@ prepend-http@^2.0.0:
|
||||
resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
|
||||
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
|
||||
|
||||
prettier@^2.0.5:
|
||||
version "2.0.5"
|
||||
resolved "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4"
|
||||
integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==
|
||||
prettier@^2.0.5, prettier@^2.1.2:
|
||||
version "2.1.2"
|
||||
resolved "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5"
|
||||
integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==
|
||||
|
||||
pretty-bytes@^5.3.0:
|
||||
version "5.3.0"
|
||||
@ -20889,8 +20888,7 @@ sourcegraph@^24.0.0:
|
||||
integrity sha512-PlGvkdBy5r5iHdKAVNY/jsPgWb3oY+2iAdIQ3qR83UHhvBFVgoctDAnyfJ1eMstENY3etBWtAJ8Kleoar3ecaA==
|
||||
|
||||
"sourcegraph@link:packages/sourcegraph-extension-api":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
version "24.7.0"
|
||||
|
||||
space-separated-tokens@^1.0.0:
|
||||
version "1.1.2"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user