Skip to content

Commit

Permalink
Configs for base url
Browse files Browse the repository at this point in the history
Remember last choice
Handle exiting workflow early
Handle optional route segments
Untrack compiled files
  • Loading branch information
rafistrauss committed Jan 3, 2021
1 parent 9850281 commit c6eea03
Show file tree
Hide file tree
Showing 21 changed files with 184 additions and 1,257 deletions.
55 changes: 5 additions & 50 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,50 +1,5 @@
# These are some examples of commonly ignored file patterns.
# You should customize this list as applicable to your project.
# Learn more about .gitignore:
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore

# Node artifact files
node_modules/
dist/

# Compiled Java class files
*.class

# Compiled Python bytecode
*.py[cod]

# Log files
*.log

# Package files
*.jar

# Maven
target/
dist/

# JetBrains IDE
.idea/

# Unit test reports
TEST*.xml

# Generated by MacOS
.DS_Store

# Generated by Windows
Thumbs.db

# Applications
*.app
*.exe
*.war

# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv

out
dist
node_modules
.vscode-test/
*.vsix
5 changes: 0 additions & 5 deletions .gitignore copy

This file was deleted.

7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
}
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
69 changes: 0 additions & 69 deletions out/CodelensProvider.js

This file was deleted.

1 change: 0 additions & 1 deletion out/CodelensProvider.js.map

This file was deleted.

82 changes: 0 additions & 82 deletions out/extension.js

This file was deleted.

1 change: 0 additions & 1 deletion out/extension.js.map

This file was deleted.

6 changes: 0 additions & 6 deletions out/regexes.js

This file was deleted.

1 change: 0 additions & 1 deletion out/regexes.js.map

This file was deleted.

33 changes: 0 additions & 33 deletions out/test/runTest.js

This file was deleted.

1 change: 0 additions & 1 deletion out/test/runTest.js.map

This file was deleted.

15 changes: 0 additions & 15 deletions out/test/suite/extension.test.js

This file was deleted.

1 change: 0 additions & 1 deletion out/test/suite/extension.test.js.map

This file was deleted.

Loading

0 comments on commit c6eea03

Please sign in to comment.