Skip to content

Commit

Permalink
build(deps): bump ts-standard from 11.0.0 to 12.0.0 (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 4, 2022
1 parent 7167ab8 commit d8b17ac
Show file tree
Hide file tree
Showing 10 changed files with 8,738 additions and 9,141 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
- name: 'Install dependencies'
run: 'npm install'

- name: 'Package the extension'
run: 'npm run package'

- name: 'Lint'
run: 'npm run lint'

- name: 'Package the extension'
run: 'npm run package'

- name: 'Test'
run: 'xvfb-run -a npm test'
98 changes: 40 additions & 58 deletions client/package-lock.json

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

8 changes: 5 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
"vscode": "^1.50.0"
},
"ts-standard": {
"files": [
"./src/**/*.ts"
"project": "./tsconfig.json",
"ignore": [
"testFixture",
"out"
],
"envs": [
"env": [
"node"
]
},
Expand Down
4 changes: 2 additions & 2 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ function pickFolder (
return {
label: folder.name,
description: folder.uri.fsPath,
folder: folder
folder
}
}),
{ placeHolder: placeHolder }
{ placeHolder }
).then((selected) => {
if (selected == null) {
return undefined
Expand Down
6 changes: 2 additions & 4 deletions client/testFixture/ts-standard/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"name": "fixture",
"ts-standard": {
"files": [
"./src/**/*.ts"
],
"envs": [
"project": "./tsconfig.json",
"env": [
"node"
]
},
Expand Down
Loading

0 comments on commit d8b17ac

Please sign in to comment.