Skip to content

Commit

Permalink
Setup extension bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Apr 28, 2022
1 parent 0d381db commit fe1c88a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
26 changes: 19 additions & 7 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
.vscode/**
.vscode-test-web/**
src/**
out/**
node_modules/**
.git-blame-ignore-revs
.gitignore
webpack.config.js
.prettierignore
.prettierrc
.vscode-test-web/**
.vscode-test/**
.vscode/**
.yarnrc
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
**/*webpack.config.js
**/jest.config.js
**/node_modules/**
**/out/**
**/package-lock.json
**/package.json
**/tsconfig.json
docs/**
images/**
src/**
test-data/**

!docs/CHANGELOG.md
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
"format": "prettier --write .",
"clean": "rimraf client/dist && rimraf server/dist",
"compile": "npm run clean && webpack --config ./client/webpack.config.js && webpack --config ./server/webpack.config.js",
"vscode:prepublish": "npm run compile",
"watch": "concurrently --kill-others \"npm run watch-server\" \"npm run watch-client\"",
"watch-server": "cd server && npm run watch",
"watch-client": "cd client && npm run watch",
Expand Down

0 comments on commit fe1c88a

Please sign in to comment.