1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Tools: Do not clear output of tsc watch

This commit is contained in:
Laurent Cozic 2021-12-21 12:43:12 +01:00
parent 7ca75718c3
commit 106ce4b09d
9 changed files with 10 additions and 10 deletions

View File

@ -12,7 +12,7 @@
"start": "gulp build -L && node \"build/main.js\" --stack-trace-enabled --log-level debug --env dev",
"start-no-build": "node \"build/main.js\" --stack-trace-enabled --log-level debug --env dev",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json"
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json"
},
"bugs": {
"url": "https://github.com/laurent22/joplin/issues"

View File

@ -10,7 +10,7 @@
"postinstall": "yarn run build",
"electronRebuild": "gulp electronRebuild",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"start": "gulp build && electron . --env dev --log-level debug --no-welcome --open-dev-tools",
"test": "jest",
"test-ci": "yarn test"

View File

@ -7,8 +7,8 @@
"scripts": {
"start": "react-native start --reset-cache",
"build": "gulp build",
"tsc": "node node_modules/typescript/bin/tsc --project tsconfig.json",
"watch": "node node_modules/typescript/bin/tsc --watch --project tsconfig.json",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"clean": "node tools/clean.js",
"buildInjectedJs": "gulp buildInjectedJs",
"watchInjectedJs": "nodemon --verbose --watch components/NoteEditor/CodeMirror.ts --exec \"yarn run buildInjectedJs\"",

View File

@ -9,7 +9,7 @@
},
"scripts": {
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json"
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json"
},
"author": "Laurent Cozic",
"license": "MIT",

View File

@ -10,7 +10,7 @@
},
"scripts": {
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"generatePluginTypes": "rm -rf ./plugin_types && yarn run tsc --declaration --declarationDir ./plugin_types --project tsconfig.json",
"test": "jest --verbose=false",
"test-ci": "yarn test"

View File

@ -9,7 +9,7 @@
},
"scripts": {
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"test": "jest",
"test-ci": "yarn test",
"start": "node index.js",

View File

@ -11,7 +11,7 @@
"scripts": {
"buildAssets": "node Tools/buildAssets.js",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"test": "jest",
"test-ci": "yarn test"
},

View File

@ -18,7 +18,7 @@
"test-debug": "node --inspect node_modules/.bin/jest -- --verbose=false",
"clean": "gulp clean",
"stripeListen": "stripe listen --forward-to http://joplincloud.local:22300/stripe/webhook",
"watch": "tsc --watch --project tsconfig.json"
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.40.0",

View File

@ -7,7 +7,7 @@
"scripts": {
"updateIgnored": "gulp updateIgnoredTypeScriptBuild",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"test": "jest --verbose=false",
"test-ci": "yarn test"
},