Skip to content

Commit

Permalink
Add previously excuded files (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieAbbondanzio authored Dec 2, 2023
1 parent 87cda41 commit e819776
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pnpm-debug.log*

# Editor directories and files
.idea
.vscode
# .vscode
*.suo
*.ntvs*
*.njsproj
Expand Down
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"version": "0.2.0",
"compounds": [],
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Electron Main",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-nix",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-win.cmd"
},
// runtimeArgs will be passed directly to your Electron application
"runtimeArgs": [],
"cwd": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Electron Render",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-nix",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-win.cmd"
},
// runtimeArgs will be passed directly to your Electron application
"runtimeArgs": ["--remote-debugging-port=9222"],
"cwd": "${workspaceFolder}"
}
]
}
14 changes: 14 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"files.exclude": {
"**/.git": false,
"**/.vscode": false,
"**/.webpack": false
},
"search.exclude": {
"**/.git": false,
"**/.vscode": false,
"**/.webpack": false
},
"cSpell.words": ["applicationmenuclick", "Ipcs", "Rehype", "testid", "tsdef"]
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "yarn workspace marqus-desktop run start",
"problemMatcher": ["$tsc"],
"label": "Start app",
"detail": "yarn workspace marqus-desktop run start"
},
{
"type": "shell",
"command": "yarn workspace marqus-desktop run publish",
"problemMatcher": ["$tsc"],
"label": "Publish app",
"detail": "yarn workspace marqus-desktop run publish"
},
{
"type": "shell",
"command": "yarn workspace marqus-desktop run test",
"problemMatcher": ["$tsc"],
"label": "Test app",
"detail": "yarn workspace marqus-desktop run test"
},
{
"type": "npm",
"script": "test e2e",
"path": "packages/marqus-desktop",
"problemMatcher": ["$tsc"],
"label": "npm: test e2e - packages/marqus-desktop",
"detail": "playwright test test/e2e/"
},
{
"type": "npm",
"script": "package",
"path": "packages/marqus-desktop",
"problemMatcher": ["$tsc"],
"label": "npm: package - packages/marqus-desktop",
"detail": "electron-forge pacakge"
}
]
}

0 comments on commit e819776

Please sign in to comment.