Skip to content

Commit

Permalink
Prepare prerelease 0.2.17; update deps (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenherring authored Oct 15, 2024
1 parent f0917a6 commit f87f22e
Show file tree
Hide file tree
Showing 10 changed files with 431 additions and 617 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ orbs:
parameters:
cache-version:
type: string
default: v10
default: v11
expected-vsix-count:
type: integer
default: 1
Expand Down
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,22 @@
// "@typescript-eslint/require-await": "error",

"@stylistic/indent": [ "error", "tab" ],
"@typescript-eslint/ban-types": [ "error", {
"@stylistic/comma-spacing": [ "warn", { "before": false, "after": true }],
"@stylistic/no-extra-parens": "warn",
"@typescript-eslint/no-restricted-types": [ "error", {
"types": {
"Object": "Use {} instead.",
"String": "Use 'string' instead.",
"Number": "Use 'number' instead.",
"Boolean": "Use 'boolean' instead."
}
}],
"@typescript-eslint/comma-spacing": [ "warn", { "before": false, "after": true }],
"@typescript-eslint/naming-convention": [ "error", {
"selector": "interface",
"format": [ "PascalCase" ],
"custom": { "regex": "^I[A-Z]", "match": true }
}],
"@typescript-eslint/no-confusing-non-null-assertion": "warn",
"@typescript-eslint/no-extra-parens": "warn",
"@typescript-eslint/no-floating-promises": [ "error", { "checkThenables": true } ],
"@typescript-eslint/no-misused-promises": "error",
"@typescript-eslint/no-non-null-assertion": 0, // strict-type-checked="error"
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/dummy-ext",
"--install-extension=ablunit-test-runner-0.2.15.vsix",
"--install-extension=ablunit-test-runner-0.2.17.vsix",
"--enable-proposed-api=kherring.ablunit-test-runner",
"${workspaceFolder}/test_projects/${input:workspaceName}"
]
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [0.2.17](https://github.com/kenherring/ablunit-test-runner/releases/tag/0.2.17) - 2024-10-14 (pre-release)

* add `timeout` key to test config (#217)
* Unskip tests and ensure they pass (#216)
* Read `openedge-project.json` profile by name consistently (#212)

**Full Changelog**: [0.2.15...0.2.17](https://github.com/kenherring/ablunit-test-runner/compare/0.2.15...0.2.17)

# [0.2.15](https://github.com/kenherring/ablunit-test-runner/releases/tag/0.2.15) - 2024-10-08 (pre-release)

* Use `TestMesssage.stackTrace` instead of custom display (#213)
Expand Down
32 changes: 32 additions & 0 deletions docs/package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# `package.json`

## Dependencies

Not in [microsoft/vscode](https://github.com/microsoft/vscode/blob/1.94.2/package.json#L74):

* `minimatch`
* `node-json-minify`
* `xml2js`

## Dev Dependencies

Not in [microsoft/vscode 1.94.2](https://github.com/microsoft/vscode/blob/1.94.2/package.json#L117):

* `@stylistic/eslint-plugin`
* `@swc-node/register`
* `@vscode/vsce`
* `esbuild`
* `eslint-plugin-promise`
* `mocha-reporter-sonarqube`
* `tsconfig-paths`

Uses newer version than VSCode:

* `@typescript-eslint/eslint-plugin`
* `@typescript-eslint/parser`
* `@vscode/test-cli`
* `eslint`

Uses older version than VSCode:

* `typescript`
Loading

0 comments on commit f87f22e

Please sign in to comment.