Skip to content

Commit

Permalink
fix startup
Browse files Browse the repository at this point in the history
  • Loading branch information
mymichu committed Mar 7, 2022
1 parent 380f630 commit b826521
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
20 changes: 9 additions & 11 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
conan_example_project
# Ignore
**

# Keep
!LICENSE
!images/
!out/src/**/*.js
!README.adoc
!node_modules
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -\
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
#install vsce
RUN npm install -g [email protected].3
RUN npm install -g [email protected].7
#RUN build.py
ENTRYPOINT ["/bin/bash", "-c", "python3 ./build.py"]
7 changes: 4 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
== Disroop vs-code-conan extension

The extension integrating https://conan.io/[conan] into https://code.visualstudio.com/[VS Code].


image:https://sonarcloud.io/images/project_badges/sonarcloud-white.svg[SonarCloud, link=https://sonarcloud.io/dashboard?id=disroop_vs-code-conan]
image:https://static.deepsource.io/deepsource-badge-light.svg[DeepSource, link=https://deepsource.io/gh/disroop/vs-code-conan?ref=repository-badge]

== Disroop vs-code-conan extension

The extension integrating https://conan.io/[conan] into https://code.visualstudio.com/[VS Code].

=== Features

Expand Down
3 changes: 3 additions & 0 deletions docs/release-notes.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
= Release Notes

== 0.8.1

This comment has been minimized.

Copy link
@clxyder

clxyder Mar 7, 2022

I believe you mean 0.8.2 here?

- Fix startup-process

== 0.8.1
- Add package information

Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Conan C/C++ package manager integration for VS-Code",
"homepage": "https://github.com/disroop/vs-code-conan/blob/master/README.adoc",
"keywords": ["c/c++","conan","dependecy-management"],
"version": "0.8.1",
"version": "0.8.2",
"publisher": "disroop",
"icon": "images/disroop-icon.png",
"preview": true,
Expand All @@ -23,7 +23,7 @@
"workspaceContains:**/conanfile.py",
"workspaceContains:**/.vscode/conan-settings.json"
],
"main": "./out/src/extension.js",
"main": "out/src/extension",
"contributes": {
"configuration": {
"title": "DisroopConan",
Expand Down Expand Up @@ -63,6 +63,7 @@
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p . ",
"build": "mkdir -p build && vsce package --out build/",
"lint": "eslint src --ext .ts",
"watch": "tsc -watch -p ./",
"test": "nyc --reporter=lcovonly --reporter=text mocha --require ts-node/register --require test/unit/fixtures.ts -R @danmasta/mocha-sonar test/unit/**/*.ts",
Expand All @@ -86,7 +87,7 @@
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"reflect-metadata": "^0.1.13",

"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"typescript-eslint": "^0.0.1-alpha.0",
Expand All @@ -98,6 +99,7 @@
"queue-typescript": "^1.0.1",
"tree-kill": "^1.2.2",
"tsyringe": "^4.6.0",
"reflect-metadata": "^0.1.13",
"vsce": "^2.0.0"
}
}

0 comments on commit b826521

Please sign in to comment.