Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gitpod package maintenance #103

Merged
merged 3 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8.6.0
version: 8.6.12

- name: Get pnpm store directory
id: pnpm-cache
Expand Down
4 changes: 2 additions & 2 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM gitpod/workspace-full
RUN sudo update-alternatives --set php $(which php8.1)
RUN sudo install-packages php8.1-gd php8.1-mbstring php8.1-curl php8.1-sqlite3 php8.1-zip php8.1-xdebug
RUN sudo install-packages php8.1-gd php8.1-mbstring php8.1-curl php8.1-sqlite3 php8.1-zip php8.1-xdebug php8.1-imagick
RUN pnpx [email protected] install-deps
RUN pnpx [email protected] install
RUN npm install -g [email protected].0 @withgraphite/graphite-cli
RUN npm install -g [email protected].12 @withgraphite/graphite-cli

COPY .gitpod/xdebug.ini /etc/php/8.1/mods-available/xdebug.ini
RUN curl -fsSL https://deno.land/x/install/install.sh | sh
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Amazee Labs <[email protected]>",
"engines": {
"node": "18",
"pnpm": "8.6.0"
"pnpm": "8.6.12"
},
"scripts": {
"postinstall": "husky install || true",
Expand Down
8 changes: 6 additions & 2 deletions packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
}
},
"scripts": {
"watch": "graphql-codegen --verbose --watch",
"watch": "concurrently \"npm run watch:codegen\" \"npm run watch:swc\" \"npm run watch:tsc\"",
"watch:codegen": "graphql-codegen --verbose --watch",
"watch:swc": "swc ./src -d ./build --watch",
"watch:tsc": "tsc --emitDeclarationOnly --watch",
"prep": "graphql-codegen --verbose && swc ./src -d ./build && tsc --emitDeclarationOnly"
},
"devDependencies": {
Expand All @@ -40,7 +43,8 @@
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.67",
"graphql": "^16.7.1",
"typescript": "^5.1.6"
"typescript": "^5.1.6",
"concurrently": "^8.2.1"
},
"dependencies": {
"@amazeelabs/scalars": "^1.6.2",
Expand Down
Loading