Skip to content

Commit

Permalink
0.1.35
Browse files Browse the repository at this point in the history
  • Loading branch information
hyzyla committed Sep 22, 2024
1 parent e8e1a03 commit 1d804ec
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 17 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "commonjs",
"displayName": "SweetPad (iOS/Swift development)",
"description": "Develop Swift/iOS projects in VS Code",
"version": "0.1.34",
"version": "0.1.35",
"publisher": "sweetpad",
"icon": "images/logo.png",
"license": "MIT",
Expand Down Expand Up @@ -123,8 +123,10 @@
"name": "sweetpad-xcodebuild-default",
"owner": "sweetpad",
"label": "SweetPad xcodebuild (default)",
"fileLocation": ["relative", "${workspaceFolder}"],

"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": [
{
"regexp": "^(.*):(\\d+):(\\d+):\\s+(error|warning):\\s+(.*)$",
Expand All @@ -140,7 +142,9 @@
"name": "sweetpad-xcbeautify-errors",
"owner": "sweetpad",
"label": "SweetPad xcbeautify (errors)",
"fileLocation": ["absolute"],
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^❌\\s*(\\/[^:]+):(\\d+):(\\d+):\\s*(.*)$",
"file": 1,
Expand All @@ -153,7 +157,9 @@
{
"name": "sweetpad-xcbeautify-warnings",
"owner": "sweetpad",
"fileLocation": ["absolute"],
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^⚠️\\s*(\\/[^:]+):(\\d+):(\\d+):\\s*(.*)$",
"file": 1,
Expand All @@ -167,7 +173,9 @@
"name": "sweetpad-xcbeautify-errors-no-color",
"owner": "sweetpad",
"label": "SweetPad xcbeautify (errors, NO_COLOR=1)",
"fileLocation": ["absolute"],
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^\\[x\\]\\s*(\\/[^:]+):(\\d+):(\\d+):\\s*(.*)$",
"file": 1,
Expand All @@ -181,7 +189,9 @@
"name": "sweetpad-xcbeautify-warnings-no-color",
"owner": "sweetpad",
"label": "SweetPad xcbeautify (warnings, NO_COLOR=1)",
"fileLocation": ["absolute"],
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^\\[!\\]\\s*(\\/[^:]+):(\\d+):(\\d+):\\s*(.*)$",
"file": 1,
Expand Down

0 comments on commit 1d804ec

Please sign in to comment.