Skip to content

Commit

Permalink
Bundle extension instead of just building it (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas authored Aug 12, 2024
1 parent a6e6b7c commit ff4f0de
Show file tree
Hide file tree
Showing 8 changed files with 889 additions and 24 deletions.
5 changes: 5 additions & 0 deletions .changeset/tidy-gorillas-learn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"vscode-apollo": major
---

Bundle extension instead of just building it.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- run: sudo apt update && sudo apt install -y libasound2 libgbm1 libgtk-3-0 libnss3 xvfb
- run:
name: Build
command: npm run build:clean
command: npm run build:production
- run:
command: echo 'APOLLO_KEY="service:bob-123:489fhseo4"' > ./sampleWorkspace/spotifyGraph/.env
- run:
Expand Down
17 changes: 16 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,22 @@
"label": "npm: watch",
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"problemMatcher": {
"owner": "custom",
"pattern": [
{
"regexp": "never match this please",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "^\\s*\\[watch\\] build started.*",
"endsPattern": "^\\s*\\[watch\\] build finished.*"
}
},
"isBackground": true,
"presentation": {
"reveal": "never"
Expand Down
13 changes: 12 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,18 @@ src
.gitattributes
codegen.yml
graphql.configuration.json
jest.config.ts
jest.*.ts
jest.*.js
package-lock.json
tsconfig.build.json
tsconfig.json
node_modules
.git*
CODEOWNERS
*.tsbuildinfo
sampleWorkspace
.changeset
.github
renovate.json
images/**/*.gif
images/marketplace
Loading

0 comments on commit ff4f0de

Please sign in to comment.