Skip to content

Commit

Permalink
Fixes bug to enable graphql autocomplete for js queries and mutations
Browse files Browse the repository at this point in the history
The cjs export was causing errors with the vscode extension
  • Loading branch information
lizkenyon committed Jan 8, 2025
1 parent 930e14d commit 6b89dd0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .graphqlrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,6 @@ function getConfig() {
return config;
}

module.exports = getConfig();
const config = getConfig();

export default config;
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# @shopify/shopify-app-template-remix

## 2025.01.8

- [#923](https://github.com/Shopify/shopify-app-template-remix/pull/923) Enable GraphQL autocomplete for Javascript

## 2024.12.04

- [#891](https://github.com/Shopify/shopify-app-template-remix/pull/891) Enable remix future flags.
-
-
## 2024.11.26
- [888](https://github.com/Shopify/shopify-app-template-remix/pull/888) Update restResources version to 2024-10

Expand Down

0 comments on commit 6b89dd0

Please sign in to comment.