Skip to content

Commit

Permalink
Extension not activating (changed from webpack to esbuild)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcrespo82 committed Apr 27, 2021
1 parent beecc98 commit f9e2e8d
Show file tree
Hide file tree
Showing 8 changed files with 6,683 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"${workspaceFolder}/src/test/files/tables3.md"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: webpack"
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
Expand Down
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@
"statusBar.foreground": "#15202b",
"activityBar.activeBackground": "#5afd81"
},
"peacock.color": "#27fd5b"
"peacock.color": "#27fd5b",
"cSpell.words": [
"wcwidth"
]
}
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"group": "build",
"problemMatcher": "$esbuild-watch",
"isBackground": true,
"label": "npm: watch",
},
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": "$esbuild",
"label": "npm: build",
}
]
}
1 change: 0 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ tslint.json
node_modules
out/
src/
tsconfig.json
webpack.config.js
resources/*.gvdesign
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

## [2.1.6] - 2021-04-27

### Fixed
- Extension not activating (changed from webpack to esbuild)

## [2.1.5] - 2021-04-26

### Changed
Expand Down
Loading

0 comments on commit f9e2e8d

Please sign in to comment.