Skip to content

Commit

Permalink
Prepare release 1.2.0 (#213)
Browse files Browse the repository at this point in the history
* Prepare release 1.2.0

* Update versions

* Lint

* update appveyor

* Update travis

* Use yarn

* Add nyc

* Run cov instead of test

* remove package-lock.json

* Remove istanbul
  • Loading branch information
cschlosser authored Apr 17, 2021
1 parent 703019a commit dbcf5dc
Show file tree
Hide file tree
Showing 12 changed files with 2,384 additions and 2,297 deletions.
5 changes: 5 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [ "src/Lang" ]
}
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ os: osx

language: node_js
node_js:
- "6"
- "15"

stages:
- lint
Expand All @@ -23,7 +23,7 @@ before_install:
fi

install:
- npm install
- yarn

jobs:
allow_failures:
Expand All @@ -38,12 +38,12 @@ jobs:
script: npm run vscode:prepublish
os: linux
- stage: test
script: npm run test
script: yarn cov
os: osx
- stage: release
script:
- npm install vsce
- vsce package --no-yarn
- yarn add vsce -D
- vsce package
- ls -alh
os: linux
deploy:
Expand All @@ -54,7 +54,7 @@ jobs:
on:
tags: true
- provider: script
script: vsce publish --no-yarn -p $VSMARKETPLACE_ACCESS_TOKEN
script: vsce publish -p $VSMARKETPLACE_ACCESS_TOKEN
skip_cleanup: true
on:
tags: true
Expand All @@ -68,4 +68,4 @@ notifications:
- https://webhooks.gitter.im/e/87b3ab4176e6f9506c13
on_success: always
on_failure: always
on_start: never
on_start: never
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: compile"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test", "--disable-extensions" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: compile"
}
]
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [1.2.0]

### Feature

- Doxygen command intellisense support (#211)
Thanks to @HO-COOH

### Other

- Nicer setting descriptions (#209)
Thanks to @HO-COOH

## [1.1.0]

### Feature
Expand Down
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
environment:
nodejs_version: "6"
nodejs_version: "15"

branches:
only:
- master

image: Visual Studio 2015
image: Visual Studio 2019

install:
- ps: Install-Product node $env:nodejs_version
- npm install
- set path=%programfiles(x86)%\\Microsoft SDKs\TypeScript\2.4;%path%
- yarn
- set path=%programfiles(x86)%\\Microsoft SDKs\TypeScript\4.2;%path%

build_script:
- npm run vscode:prepublish
- yarn vscode:prepublish

test_script:
- npm run test
- yarn test

notifications:
- provider: Webhook
Expand All @@ -27,4 +27,4 @@ notifications:
APPVEYOR-COMMIT-ID: '{{commitId}}'
on_build_success: true
on_build_failure: true
on_build_status_changed: true
on_build_status_changed: true
Loading

0 comments on commit dbcf5dc

Please sign in to comment.