Skip to content

Commit

Permalink
mass updates and related code migrations/type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rosskevin committed Sep 6, 2024
1 parent 0ffe955 commit e551084
Show file tree
Hide file tree
Showing 13 changed files with 5,950 additions and 5,662 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/*
!.yarn/patches
!.yarn/releases
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.

925 changes: 925 additions & 0 deletions .yarn/releases/yarn-4.4.1.cjs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.4.1.cjs
Loading

0 comments on commit e551084

Please sign in to comment.