You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-12-26 23:38:08 +02:00
Compare commits
5 Commits
logger_fix
...
issue-8591
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4fc44cd952 | ||
|
|
ea7c7f6447 | ||
|
|
29931c05ad | ||
|
|
17c227024e | ||
|
|
406a1496db |
@@ -57,7 +57,7 @@
|
||||
"proper-lockfile": "4.1.2",
|
||||
"read-chunk": "2.1.0",
|
||||
"server-destroy": "1.0.1",
|
||||
"sharp": "0.32.2",
|
||||
"sharp": "0.32.3",
|
||||
"sprintf-js": "1.1.2",
|
||||
"sqlite3": "5.1.6",
|
||||
"string-padding": "1.0.2",
|
||||
|
||||
@@ -174,7 +174,7 @@ export default class ElectronAppWrapper {
|
||||
// so that it can tell us if we can really close the app or not.
|
||||
// Search for "appClose" event for closing logic on renderer side.
|
||||
event.preventDefault();
|
||||
this.win_.webContents.send('appClose');
|
||||
if (this.win_) this.win_.webContents.send('appClose');
|
||||
} else {
|
||||
// If the renderer process has responded, check if we can close or not
|
||||
if (this.rendererProcessQuitReply_.canClose) {
|
||||
|
||||
@@ -26,6 +26,7 @@ interface State {
|
||||
|
||||
interface Props {
|
||||
message?: string;
|
||||
children: any;
|
||||
}
|
||||
|
||||
export default class ErrorBoundary extends React.Component<Props, State> {
|
||||
|
||||
@@ -99,7 +99,7 @@ function CodeMirror(props: NoteBodyEditorProps, ref: any) {
|
||||
}
|
||||
}, []);
|
||||
|
||||
const addListItem = useCallback((string1, defaultText = '') => {
|
||||
const addListItem = useCallback((string1: string, defaultText = '') => {
|
||||
if (editorRef.current) {
|
||||
if (editorRef.current.somethingSelected()) {
|
||||
editorRef.current.wrapSelectionsByLine(string1);
|
||||
|
||||
@@ -141,7 +141,7 @@ export default function useScrollHandler(editorRef: any, webviewRef: any, onScro
|
||||
// eslint-disable-next-line @seiyab/react-hooks/exhaustive-deps -- Old code before rule was applied
|
||||
}, []);
|
||||
|
||||
const editor_resize = useCallback((cm) => {
|
||||
const editor_resize = useCallback((cm: any) => {
|
||||
if (isCodeMirrorReady(cm)) {
|
||||
// This handler is called when resized and refreshed.
|
||||
// Only when resized, the scroll position is restored.
|
||||
|
||||
@@ -324,7 +324,7 @@ function NoteEditor(props: NoteEditorProps) {
|
||||
|
||||
const onMessage = useMessageHandler(scrollWhenReady, setScrollWhenReady, editorRef, setLocalSearchResultCount, props.dispatch, formNote);
|
||||
|
||||
const externalEditWatcher_noteChange = useCallback((event) => {
|
||||
const externalEditWatcher_noteChange = useCallback((event: any) => {
|
||||
if (event.id === formNote.id) {
|
||||
const newFormNote = {
|
||||
...formNote,
|
||||
@@ -337,7 +337,7 @@ function NoteEditor(props: NoteEditorProps) {
|
||||
// eslint-disable-next-line @seiyab/react-hooks/exhaustive-deps -- Old code before rule was applied
|
||||
}, [formNote]);
|
||||
|
||||
const onNotePropertyChange = useCallback((event) => {
|
||||
const onNotePropertyChange = useCallback((event: any) => {
|
||||
setFormNote(formNote => {
|
||||
if (formNote.id !== event.note.id) return formNote;
|
||||
|
||||
|
||||
@@ -84,11 +84,11 @@ function NoteListItem(props: NoteListItemProps, ref: any) {
|
||||
dragItemPosition = 'bottom';
|
||||
}
|
||||
|
||||
const onTitleClick = useCallback((event) => {
|
||||
const onTitleClick = useCallback((event: any) => {
|
||||
props.onTitleClick(event, props.item);
|
||||
}, [props.onTitleClick, props.item]);
|
||||
|
||||
const onCheckboxClick = useCallback((event) => {
|
||||
const onCheckboxClick = useCallback((event: any) => {
|
||||
props.onCheckboxClick(event, props.item);
|
||||
}, [props.onCheckboxClick, props.item]);
|
||||
|
||||
|
||||
@@ -112,7 +112,7 @@
|
||||
"@testing-library/react-hooks": "8.0.1",
|
||||
"@types/jest": "29.5.3",
|
||||
"@types/node": "18.16.18",
|
||||
"@types/react": "16.14.43",
|
||||
"@types/react": "18.0.24",
|
||||
"@types/react-redux": "7.1.25",
|
||||
"@types/styled-components": "5.1.26",
|
||||
"electron": "25.3.1",
|
||||
@@ -163,7 +163,7 @@
|
||||
"react-datetime": "3.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"react-redux": "8.1.1",
|
||||
"react-select": "5.7.3",
|
||||
"react-select": "5.7.4",
|
||||
"react-toggle-button": "2.2.0",
|
||||
"react-tooltip": "4.5.1",
|
||||
"redux": "4.2.1",
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"typedoc": "0.17.8",
|
||||
"typescript": "4.9.5"
|
||||
"typescript": "5.0.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,11 +21,11 @@
|
||||
"@types/js-yaml": "4.0.5",
|
||||
"@types/node": "18.16.18",
|
||||
"@types/node-rsa": "1.1.1",
|
||||
"@types/react": "17.0.62",
|
||||
"@types/uuid": "^9.0.0",
|
||||
"@types/react": "18.0.24",
|
||||
"@types/uuid": "9.0.2",
|
||||
"clean-html": "1.5.0",
|
||||
"jest": "29.5.0",
|
||||
"sharp": "0.32.2",
|
||||
"sharp": "0.32.3",
|
||||
"typescript": "5.1.3"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
"devDependencies": {
|
||||
"@types/jest": "29.5.3",
|
||||
"@types/pdfjs-dist": "2.10.378",
|
||||
"@types/react": "16.14.43",
|
||||
"@types/react": "18.2.6",
|
||||
"@types/react-dom": "18.2.6",
|
||||
"@types/styled-components": "5.1.26",
|
||||
"babel-jest": "29.5.0",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# Copyright (C) 2001 Laurent Cozic
|
||||
# This file is distributed under the same license as the Joplin-CLI package.
|
||||
# Hrvoje Mandić <trbuhom@net.hr>
|
||||
# Milo Ivir <mail@milotype.de>, 2021., 2022.
|
||||
# Milo Ivir <mail@milotype.de>, 2021., 2022., 2023.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
@@ -15,8 +15,10 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.0\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
|
||||
#: packages/app-mobile/components/screens/ConfigScreen.tsx:687
|
||||
msgid "- Camera: to allow taking a picture and attaching it to a note."
|
||||
@@ -359,8 +361,8 @@ msgstr ""
|
||||
#: packages/app-cli/app/command-mkbook.ts:33
|
||||
#: packages/app-cli/app/command-mv.js:29
|
||||
msgid ""
|
||||
"Ambiguous notebook \"%s\". Please use short notebook id instead - press "
|
||||
"\"ti\" to see the short notebook id"
|
||||
"Ambiguous notebook \"%s\". Please use short notebook id instead - press \"ti"
|
||||
"\" to see the short notebook id"
|
||||
msgstr ""
|
||||
"Nejednoznačna bilježnica „%s”. Umjesto toga koristi kratki ID bilježnice – "
|
||||
"pritisni „ti” za prikaz kratkog ID-a bilježnice"
|
||||
@@ -1424,9 +1426,8 @@ msgid "Downloading"
|
||||
msgstr "Preuzimanje"
|
||||
|
||||
#: packages/app-mobile/components/voiceTyping/VoiceTypingDialog.tsx:89
|
||||
#, fuzzy
|
||||
msgid "Downloading %s language files..."
|
||||
msgstr "Preuzimanje resursa …"
|
||||
msgstr "Preuzimanje jezičnih datoteka za %s …"
|
||||
|
||||
#: packages/app-cli/app/command-sync.ts:218
|
||||
msgid "Downloading resources..."
|
||||
@@ -2021,9 +2022,8 @@ msgid "Help"
|
||||
msgstr "Pomoć"
|
||||
|
||||
#: packages/app-mobile/components/screens/ConfigScreen.tsx:759
|
||||
#, fuzzy
|
||||
msgid "Hermes enabled: %d"
|
||||
msgstr "Pretraživanje cijelog teksta je aktivirano: %d"
|
||||
msgstr "Hermes aktiviran: %d"
|
||||
|
||||
#: packages/app-desktop/gui/MenuBar.tsx:567
|
||||
msgid "Hide %s"
|
||||
@@ -2445,6 +2445,7 @@ msgstr "Slijed gumbova rasporeda"
|
||||
#: packages/lib/models/Setting.ts:1704
|
||||
msgid "Leave it blank to download the language files from the default website"
|
||||
msgstr ""
|
||||
"Ostavi prazno za preuzimanje jezičnih datoteka sa standardne web stranice"
|
||||
|
||||
#: packages/app-desktop/gui/MainScreen/commands/leaveSharedFolder.ts:10
|
||||
msgid "Leave notebook..."
|
||||
@@ -3460,7 +3461,7 @@ msgstr "Zamijeni sa …"
|
||||
|
||||
#: packages/app-mobile/components/NoteEditor/SearchPanel.tsx:257
|
||||
msgid "Replace: "
|
||||
msgstr "Zamijeni:"
|
||||
msgstr "Zamijeni: "
|
||||
|
||||
#: packages/app-desktop/gui/MainScreen/commands/resetLayout.ts:7
|
||||
msgid "Reset application layout"
|
||||
@@ -3649,9 +3650,8 @@ msgid "Select file..."
|
||||
msgstr "Odaberi datoteku …"
|
||||
|
||||
#: packages/app-mobile/components/screens/folder.js:109
|
||||
#, fuzzy
|
||||
msgid "Select parent notebook"
|
||||
msgstr "Obriši bilježnicu"
|
||||
msgstr "Obriši nadređenu bilježnicu"
|
||||
|
||||
#: packages/app-cli/app/command-server.js:38
|
||||
msgid "Server is already running on port %d"
|
||||
@@ -4940,12 +4940,12 @@ msgstr "Vim"
|
||||
|
||||
#: packages/lib/models/Setting.ts:1705
|
||||
msgid "Voice typing language files (URL)"
|
||||
msgstr ""
|
||||
msgstr "Jezične datoteke za tipkanje glasom (URL)"
|
||||
|
||||
#: packages/app-mobile/components/screens/Note.tsx:994
|
||||
#: packages/app-mobile/components/voiceTyping/VoiceTypingDialog.tsx:119
|
||||
msgid "Voice typing..."
|
||||
msgstr "Tipkanje glasa …"
|
||||
msgstr "Tipkanje glasom …"
|
||||
|
||||
#: packages/app-mobile/components/screens/ConfigScreen.tsx:83
|
||||
msgid "Warning"
|
||||
@@ -4999,9 +4999,8 @@ msgstr ""
|
||||
"pritisni `mn`."
|
||||
|
||||
#: packages/lib/WelcomeUtils.ts:63
|
||||
#, fuzzy
|
||||
msgid "Welcome!"
|
||||
msgstr "Dobro došli"
|
||||
msgstr "Dobro došao, dobro došla!"
|
||||
|
||||
#: packages/lib/models/Setting.ts:1105
|
||||
msgid "When creating a new note:"
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
"node-fetch": "2.6.7",
|
||||
"relative": "3.0.2",
|
||||
"request": "2.88.2",
|
||||
"sharp": "0.32.2",
|
||||
"sharp": "0.32.3",
|
||||
"source-map-support": "0.5.21",
|
||||
"uri-template": "2.0.0",
|
||||
"yargs": "17.7.2"
|
||||
|
||||
118
yarn.lock
118
yarn.lock
@@ -4436,7 +4436,7 @@ __metadata:
|
||||
"@testing-library/react-hooks": 8.0.1
|
||||
"@types/jest": 29.5.3
|
||||
"@types/node": 18.16.18
|
||||
"@types/react": 16.14.43
|
||||
"@types/react": 18.0.24
|
||||
"@types/react-redux": 7.1.25
|
||||
"@types/styled-components": 5.1.26
|
||||
async-mutex: 0.4.0
|
||||
@@ -4471,7 +4471,7 @@ __metadata:
|
||||
react-datetime: 3.2.0
|
||||
react-dom: 18.2.0
|
||||
react-redux: 8.1.1
|
||||
react-select: 5.7.3
|
||||
react-select: 5.7.4
|
||||
react-test-renderer: 18.2.0
|
||||
react-toggle-button: 2.2.0
|
||||
react-tooltip: 4.5.1
|
||||
@@ -4688,8 +4688,8 @@ __metadata:
|
||||
"@types/nanoid": 3.0.0
|
||||
"@types/node": 18.16.18
|
||||
"@types/node-rsa": 1.1.1
|
||||
"@types/react": 17.0.62
|
||||
"@types/uuid": ^9.0.0
|
||||
"@types/react": 18.0.24
|
||||
"@types/uuid": 9.0.2
|
||||
async-mutex: 0.4.0
|
||||
base-64: 1.0.0
|
||||
base64-stream: 1.0.0
|
||||
@@ -4734,7 +4734,7 @@ __metadata:
|
||||
relative: 3.0.2
|
||||
reselect: 4.1.8
|
||||
server-destroy: 1.0.1
|
||||
sharp: 0.32.2
|
||||
sharp: 0.32.3
|
||||
sprintf-js: 1.1.2
|
||||
sqlite3: 5.1.6
|
||||
string-padding: 1.0.2
|
||||
@@ -4760,7 +4760,7 @@ __metadata:
|
||||
"@joplin/lib": ~2.12
|
||||
"@types/jest": 29.5.3
|
||||
"@types/pdfjs-dist": 2.10.378
|
||||
"@types/react": 16.14.43
|
||||
"@types/react": 18.2.6
|
||||
"@types/react-dom": 18.2.6
|
||||
"@types/styled-components": 5.1.26
|
||||
async-mutex: 0.4.0
|
||||
@@ -4969,7 +4969,7 @@ __metadata:
|
||||
request: 2.88.2
|
||||
rss: 1.2.2
|
||||
sass: 1.63.6
|
||||
sharp: 0.32.2
|
||||
sharp: 0.32.3
|
||||
source-map-support: 0.5.21
|
||||
sqlite3: 5.1.6
|
||||
typescript: 5.1.3
|
||||
@@ -8010,28 +8010,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/react@npm:16.14.43":
|
||||
version: 16.14.43
|
||||
resolution: "@types/react@npm:16.14.43"
|
||||
dependencies:
|
||||
"@types/prop-types": "*"
|
||||
"@types/scheduler": "*"
|
||||
csstype: ^3.0.2
|
||||
checksum: 10ce3f8b80eadd66178a53845bddf264fa109fcfe0a615a0dce7e027dc426768573e87aee3eba7c53a2a867e159bba928bd86cac92ba93c5bd0152a63a49ccad
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/react@npm:17.0.62":
|
||||
version: 17.0.62
|
||||
resolution: "@types/react@npm:17.0.62"
|
||||
dependencies:
|
||||
"@types/prop-types": "*"
|
||||
"@types/scheduler": "*"
|
||||
csstype: ^3.0.2
|
||||
checksum: 428a5aff44824ef504e9a9259b5894fe44a5db1c344b536990f07e132900ff5b34cbef0be77a84f30f37be1f88fc8b56dce328f568de8d65de3bfe414c05b2e1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/react@npm:18.0.24":
|
||||
version: 18.0.24
|
||||
resolution: "@types/react@npm:18.0.24"
|
||||
@@ -8043,6 +8021,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/react@npm:18.2.6":
|
||||
version: 18.2.6
|
||||
resolution: "@types/react@npm:18.2.6"
|
||||
dependencies:
|
||||
"@types/prop-types": "*"
|
||||
"@types/scheduler": "*"
|
||||
csstype: ^3.0.2
|
||||
checksum: dea9d232d8df7ac357367a69dcb557711ab3d5501807ffa77cebeee73d49ee94d095f298e36853c63ed47cce097eee4c7eae2aaa8c02fac3f0171ec1b523a819
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/react@npm:^17.0.52":
|
||||
version: 17.0.52
|
||||
resolution: "@types/react@npm:17.0.52"
|
||||
@@ -8142,13 +8131,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/uuid@npm:^9.0.0":
|
||||
version: 9.0.0
|
||||
resolution: "@types/uuid@npm:9.0.0"
|
||||
checksum: 59ae56d9547c8758588659da2a2b4c97cce79c2aae1798c892bb29452ef08e87859dea2ec3a66bfa88d0d2153147520be2b1893be920f9f0bc9c53a3207ea6aa
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/verror@npm:^1.10.3":
|
||||
version: 1.10.6
|
||||
resolution: "@types/verror@npm:1.10.6"
|
||||
@@ -17404,7 +17386,7 @@ __metadata:
|
||||
resolution: "generate-plugin-doc@workspace:packages/generate-plugin-doc"
|
||||
dependencies:
|
||||
typedoc: 0.17.8
|
||||
typescript: 4.9.5
|
||||
typescript: 5.0.4
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@@ -21049,7 +21031,7 @@ __metadata:
|
||||
proper-lockfile: 4.1.2
|
||||
read-chunk: 2.1.0
|
||||
server-destroy: 1.0.1
|
||||
sharp: 0.32.2
|
||||
sharp: 0.32.3
|
||||
sprintf-js: 1.1.2
|
||||
sqlite3: 5.1.6
|
||||
string-padding: 1.0.2
|
||||
@@ -28303,9 +28285,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"react-select@npm:5.7.3":
|
||||
version: 5.7.3
|
||||
resolution: "react-select@npm:5.7.3"
|
||||
"react-select@npm:5.7.4":
|
||||
version: 5.7.4
|
||||
resolution: "react-select@npm:5.7.4"
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.12.0
|
||||
"@emotion/cache": ^11.4.0
|
||||
@@ -28319,7 +28301,7 @@ __metadata:
|
||||
peerDependencies:
|
||||
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
checksum: 9ffa75afb395e7077076521c529611494164ace0c6b1ceb249406991ac668947cfd0424812c15c2a45c792bb2794b22f2df93c4c2f2515962b7dfc7c91b029ec
|
||||
checksum: ca72941ad1d2c578ec04c09ed3deb7e373f987e589f403fadedc6fcc3e29935b5425ec4d2628f0fe58c21319bcaf153c0d0172432e09fc6423da869d848de757
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -29990,9 +29972,9 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"sharp@npm:0.32.2":
|
||||
version: 0.32.2
|
||||
resolution: "sharp@npm:0.32.2"
|
||||
"sharp@npm:0.32.3":
|
||||
version: 0.32.3
|
||||
resolution: "sharp@npm:0.32.3"
|
||||
dependencies:
|
||||
color: ^4.2.3
|
||||
detect-libc: ^2.0.1
|
||||
@@ -30003,7 +29985,7 @@ __metadata:
|
||||
simple-get: ^4.0.1
|
||||
tar-fs: ^3.0.4
|
||||
tunnel-agent: ^0.6.0
|
||||
checksum: 2d6b9bcada4c4cc6f606003213d866f975254da011a30972d422086e69ae280973dbedbdb91aa636d98de874fd0eb7af42f0aaff044c22e7e65da28e25c7d63a
|
||||
checksum: 8a6ed0d00bd4d3d6ba92c392fe1f00a4a207f138257a4d903ce5afe5c6d7f684b5218c5b4e8df1097aac960ac10e0114c823f6a8a7e18255bf4a8ec364087051
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@@ -32869,7 +32851,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:4 - 5":
|
||||
"typescript@npm:4 - 5, typescript@npm:5.0.4":
|
||||
version: 5.0.4
|
||||
resolution: "typescript@npm:5.0.4"
|
||||
bin:
|
||||
@@ -32879,16 +32861,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:4.9.5, typescript@npm:^4.0.0, typescript@npm:^4.0.2, typescript@npm:^4.5.5":
|
||||
version: 4.9.5
|
||||
resolution: "typescript@npm:4.9.5"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: ee000bc26848147ad423b581bd250075662a354d84f0e06eb76d3b892328d8d4440b7487b5a83e851b12b255f55d71835b008a66cbf8f255a11e4400159237db
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:5.1.3":
|
||||
version: 5.1.3
|
||||
resolution: "typescript@npm:5.1.3"
|
||||
@@ -32909,7 +32881,17 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@4 - 5#~builtin<compat/typescript>":
|
||||
"typescript@npm:^4.0.0, typescript@npm:^4.0.2, typescript@npm:^4.5.5":
|
||||
version: 4.9.5
|
||||
resolution: "typescript@npm:4.9.5"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: ee000bc26848147ad423b581bd250075662a354d84f0e06eb76d3b892328d8d4440b7487b5a83e851b12b255f55d71835b008a66cbf8f255a11e4400159237db
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@4 - 5#~builtin<compat/typescript>, typescript@patch:typescript@5.0.4#~builtin<compat/typescript>":
|
||||
version: 5.0.4
|
||||
resolution: "typescript@patch:typescript@npm%3A5.0.4#~builtin<compat/typescript>::version=5.0.4&hash=ad5954"
|
||||
bin:
|
||||
@@ -32919,16 +32901,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@4.9.5#~builtin<compat/typescript>, typescript@patch:typescript@^4.0.0#~builtin<compat/typescript>, typescript@patch:typescript@^4.0.2#~builtin<compat/typescript>, typescript@patch:typescript@^4.5.5#~builtin<compat/typescript>":
|
||||
version: 4.9.5
|
||||
resolution: "typescript@patch:typescript@npm%3A4.9.5#~builtin<compat/typescript>::version=4.9.5&hash=ad5954"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: 8f6260acc86b56bfdda6004bc53f32ea548f543e8baef7071c8e34d29d292f3e375c8416556c8de10b24deef6933cd1c16a8233dc84a3dd43a13a13265d0faab
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@5.1.3#~builtin<compat/typescript>":
|
||||
version: 5.1.3
|
||||
resolution: "typescript@patch:typescript@npm%3A5.1.3#~builtin<compat/typescript>::version=5.1.3&hash=ad5954"
|
||||
@@ -32949,6 +32921,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@^4.0.0#~builtin<compat/typescript>, typescript@patch:typescript@^4.0.2#~builtin<compat/typescript>, typescript@patch:typescript@^4.5.5#~builtin<compat/typescript>":
|
||||
version: 4.9.5
|
||||
resolution: "typescript@patch:typescript@npm%3A4.9.5#~builtin<compat/typescript>::version=4.9.5&hash=ad5954"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: 8f6260acc86b56bfdda6004bc53f32ea548f543e8baef7071c8e34d29d292f3e375c8416556c8de10b24deef6933cd1c16a8233dc84a3dd43a13a13265d0faab
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typical@npm:^2.6.1":
|
||||
version: 2.6.1
|
||||
resolution: "typical@npm:2.6.1"
|
||||
|
||||
Reference in New Issue
Block a user