Skip to content

Commit

Permalink
rework extension to webpack and improve typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
laefad committed Mar 27, 2022
1 parent 25eb544 commit 7c2c5d0
Show file tree
Hide file tree
Showing 24 changed files with 3,798 additions and 2,550 deletions.
Empty file modified .devcontainer/Dockerfile
100644 → 100755
Empty file.
Empty file modified .devcontainer/devcontainer.json
100644 → 100755
Empty file.
24 changes: 0 additions & 24 deletions .eslintrc.json

This file was deleted.

7 changes: 0 additions & 7 deletions .vscode/extensions.json

This file was deleted.

13 changes: 6 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,21 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/dist/test"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
"outFiles": ["${workspaceFolder}/dist/test/**/*.js"],
"preLaunchTask": "npm: test-compile"
}
]
}
12 changes: 1 addition & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
"flutter-features.commands": [
{
"name": "Flutter build_runner build",
Expand Down Expand Up @@ -41,6 +32,5 @@
"name": "Run web",
"command": "fvm flutter run -d chrome --web-renderer html"
}

]
}
}
20 changes: 0 additions & 20 deletions .vscode/tasks.json

This file was deleted.

19 changes: 9 additions & 10 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
.vscode/**
.vscode-test/**
src/**
.vscode
node_modules
out/
src/
.devcontainer/
*.vsix

.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
.devcontainer/**
webpack.config.ts
tsconfig.json
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]

### [1.1.0] - 2022-03-28
- Building with webpack

### [1.0.2] - 2022-02-16
- Fix options scope

Expand Down
Loading

0 comments on commit 7c2c5d0

Please sign in to comment.