Skip to content

Commit 5fe58ae

Browse files
authored
Enhance project structure (VSC-277) (#73)
* Removed unused files Removed gulp script from vsix moved the logo to media folder * Remove all checks from pre-commit hook Update Readme Update lint script to prettier Update CI for gitlab actions * Fix always uploading of file
1 parent 93661ce commit 5fe58ae

File tree

8 files changed

+18
-162
lines changed

8 files changed

+18
-162
lines changed

.bandit

-2
This file was deleted.

.flake8

-144
This file was deleted.

.github/workflows/ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,15 @@ jobs:
3131
python -m pip install --upgrade pip
3232
pip install -r esp_debug_adapter/requirements.txt
3333
34-
- name: Prettier Check
35-
run: yarn prettier --check "**/*.*"
34+
- name: Lint Check
35+
run: yarn lint
3636

3737
- name: Check Node Packages Vulnerabilities
3838
run: yarn audit
3939

4040
- name: Package .vsix
41-
run: yarn run package
41+
run: yarn package
42+
4243
- name: Upload .vsix File
4344
uses: actions/upload-artifact@v1
4445
with:
@@ -47,13 +48,14 @@ jobs:
4748

4849
- name: xvfb
4950
run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
51+
5052
- name: Extension Test
51-
run: yarn run test --VERBOSE >> testing.results.log
53+
run: yarn test --VERBOSE >> testing.results.log
5254
env:
5355
CODE_VERSION: "1.41.1"
5456
DISPLAY: ":99.0"
57+
5558
- name: Upload testing.results.log
56-
if: always()
5759
uses: actions/upload-artifact@v1
5860
with:
5961
name: testing.results.log

.huskyrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"hooks": {
3-
"pre-commit": "pretty-quick --staged && yarn audit && yarn run tslint && yarn run compile"
3+
"pre-commit": "pretty-quick --staged"
44
}
55
}

.vscodeignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ tslint.json
2222
yarn.lock
2323
package-lock.json
2424
node_modules
25-
.yarnrc
25+
gulpfile.js
26+
.yarnrc

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ There are a few dependencies which needs to be downloaded and installed before y
3131
## Coming Soon 🔜
3232

3333
- Heap Tracing with complete GUI
34-
- VSCode Remote
34+
- Create new project wizard
3535

3636
## Quick Installation Guide
3737

@@ -55,27 +55,26 @@ To install from `.vsix` file, first head to [releases page](https://github.com/e
5555
- Make sure have the [C/C++ Extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) from Visual Studio Code Marketplace.
5656
- Clone this repository `git clone https://github.com/espressif/vscode-esp-idf-extension.git`
5757
- Install all the dependencies, using `yarn`
58-
- Compile typescript with `yarn run compile`
59-
- Bundle the webviews using `yarn run webpack`.
6058
- Press <kbd>F5</kbd> to Run with Debugger, this will launch a new VSCode Extension Development Host to debug the extension.
59+
- Compile project with `yarn webpack` (optional for production)
6160

6261
#### Build vsix locally
6362

64-
- Build the Visual Studio Code extension setup with `yarn run build_vsix`
63+
- Build the Visual Studio Code extension setup with `yarn package`
6564

6665
## Uninstalling the plugin
6766

6867
- In Visual Studio Code, go to the Extensions tab.
6968
- Click on the EspressifIDF extension lower right icon.
7069
- Click Uninstall.
71-
- Go to your `{VSCODE_EXTENSION_DIR}` and make sure to delete the Espressif IDF plugin folder.
70+
- Go to your `${VSCODE_EXTENSION_DIR}` and make sure to delete the Espressif IDF plugin folder.
7271

7372
## How to use
7473

7574
- First set up your Visual Studio Code as explained in the former section.
7675
- Then
7776
- Either open Visual Studio Code and create a workspace folder.
78-
- Run `code {YOUR_PROJECT_DIR}` from the command line.
77+
- Run `code ${YOUR_PROJECT_DIR}` from the command line.
7978
- Press <kbd>F1</kbd> and type **ESP-IDF: Configure ESP-IDF extension** to configure the extension Please take a look at [ONBOARDING](./docs/ONBOARDING.md) for more detail.
8079

8180
- Press <kbd>F1</kbd> and type **ESP-IDF: Create ESP-IDF project** to generate a template ESP-IDF project.
File renamed without changes.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"version": "0.2.0",
77
"license": "Apache-2.0",
88
"publisher": "espressif",
9-
"icon": "espressif_icon.png",
9+
"icon": "media/espressif_icon.png",
1010
"galleryBanner": {
1111
"color": "#636363",
1212
"theme": "dark"
@@ -532,10 +532,10 @@
532532
],
533533
"scripts": {
534534
"vscode:prepublish": "gulp build && webpack --mode production",
535-
"tslint": "tslint -c tslint.json -p .",
535+
"lint": "prettier --check **/*.*",
536536
"debugPreTask": "webpack --mode development",
537537
"compile": "tsc -p ./",
538-
"watch": "tsc -p ./ --watch & webpack --watch --mode development",
538+
"watch": "webpack --watch --mode development",
539539
"test": "yarn run compile && node ./out/test/runTest.js",
540540
"package": "vsce package --yarn -o esp-idf-extension.vsix",
541541
"release": "vsce publish --yarn -p ${VS_MARKETPLACE_TOKEN}",

0 commit comments

Comments
 (0)