Replies: 1 comment
-
|
Moving to #10210 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Sometimes after completing a task I get characters in the terminal or in the commit message.
Something like this:
35;95;33M35;94;33M35;94;34M35;93;34M35;93;35M35;92;35M35;91;36M35;91;37M35;90;37M35;89;37M35;89;38M35;88;38M35;88;39M35;88;40M35;88;41M35;88;42M35;88;43MSometimes they are there, sometimes they are not, I don't see a pattern. They can also appear after the task is completed with
git commit --amend. In this case, all these symbols become a commit message, which requires additional changes{ "$schema": "https://turbo.build/schema.json", "tasks": { "pre-commit": { "dependsOn": ["lint", "typecheck"] }, "pre-push": { "dependsOn": ["test"] }, "build": { "dependsOn": ["test", "typecheck", "lint"], "outputs": ["dist/**"] }, "build:dev": { "outputs": ["dist/**"] }, "build:stage": { "dependsOn": ["test", "typecheck", "lint"], "outputs": ["dist/**"] }, "build:analyze": { "dependsOn": ["build:dev"], "outputs": ["dist/**"] }, "preview": { "persistent": true, "cache": false }, "lint": { "dependsOn": ["^lint"] }, "test": { "dependsOn": ["^test"] }, "typecheck": { "dependsOn": ["^typecheck"] }, "dev": { "persistent": true, "cache": false }, "clean:turbo": { "cache": false, "outputs": [] }, "clean:node-modules": { "cache": false, "outputs": [] }, "sb": { "cache": false } }, "ui": "tui" }Additional information
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions