This repository was archived by the owner on Apr 27, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22node_modules /
33coverage /
44.cache /
5+ .nyc_output /
Original file line number Diff line number Diff line change 11package.json
22package-lock.json
33dist /
4- .cache /
4+ .cache /
5+ coverage /
6+ .nyc_output /
Original file line number Diff line number Diff line change 11language : node_js
2- node_js : ' 10 '
2+ node_js : " 10 "
33cache :
44 directories :
55 - ~/.npm
1313 - npm run prettier-check
1414 - npm run tslint
1515 - npm run build
16- - npm test
1716 - npm run cover
1817 - nyc report --reporter json
19- - ' bash <(curl -s https://codecov.io/bash)'
18+ - " bash <(curl -s https://codecov.io/bash)"
2019stages :
2120 - test
2221branches :
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export function activate(context: sourcegraph.ExtensionContext): void {
1313 // TODO(lguychard) sourcegraph.configuration is currently not rxjs-compatible.
1414 // Fix this once it has been made compatible.
1515 const configurationChanges = new BehaviorSubject < void > ( undefined )
16- context . subscriptions . add ( sourcegraph . configuration . subscribe ( ( ) => configurationChanges . next ( ) ) )
16+ context . subscriptions . add ( sourcegraph . configuration . subscribe ( ( ) => configurationChanges . next ( undefined ) ) )
1717
1818 if ( sourcegraph . app . activeWindowChanges ) {
1919 const selectionChanges = from ( sourcegraph . app . activeWindowChanges ) . pipe (
You can’t perform that action at this time.
0 commit comments