Skip to content

Commit

Permalink
Merge pull request #50 from rosskevin/update
Browse files Browse the repository at this point in the history
Mass updates and related code migrations/type fixes
  • Loading branch information
iRyusa authored Oct 22, 2024
2 parents 0ffe955 + 24bb435 commit 21b5f23
Show file tree
Hide file tree
Showing 12 changed files with 397 additions and 5,663 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ node_modules
documentation/*
!documentation/build.ts
!documentation/tsconfig.json
*.vsix
*.vsix

.yarn
.yarnrc.yml
yarn.lock
47 changes: 21 additions & 26 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,28 @@

// A task runner that calls a custom npm script that compiles the extension.
{
"version": "2.0.0",
"version": "2.0.0",

// we want to run npm
"command": "npm",
// we want to run npm
"command": "npm",

// we run the custom script "compile" as defined in package.json
"args": ["run", "compile", "--loglevel", "silent"],
// we run the custom script "compile" as defined in package.json
"args": ["run", "compile", "--loglevel", "silent"],

// The tsc compiler is started in watching mode
"isWatching": true,
// The tsc compiler is started in watching mode
"isBackground": true,

// use the standard tsc in watch mode problem matcher to find compile problems in the output.
"problemMatcher": "$tsc-watch",
"tasks": [
{
"label": "npm",
"type": "shell",
"command": "npm",
"args": [
"run",
"compile",
"--loglevel",
"silent"
],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": "build"
}
]
}
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
"problemMatcher": "$tsc-watch",
"tasks": [
{
"label": "npm",
"type": "shell",
"command": "npm",
"args": ["run", "compile", "--loglevel", "silent"],
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": "build"
}
]
}
30 changes: 0 additions & 30 deletions .vscode/tasks.json.old

This file was deleted.

2 changes: 2 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
**/*.map
.vscode/**
.yarn
.yarnrc.yml
documentation/**
!documentation/examples/*
!documentation/images/*
Expand Down
Loading

0 comments on commit 21b5f23

Please sign in to comment.