Skip to content

Commit

Permalink
chore/upgrade greenwood v0.29.0 (#294)
Browse files Browse the repository at this point in the history
* upgrade greenwood v0.29.0-alpha.4

* upgrade to latest greenwood alpha.6

* final release
  • Loading branch information
thescientist13 authored Nov 9, 2023
1 parent ec22a47 commit 109d2d3
Show file tree
Hide file tree
Showing 4 changed files with 187 additions and 145 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@greenwood/cli": "^0.28.2",
"@greenwood/plugin-google-analytics": "^0.28.2",
"@greenwood/plugin-graphql": "^0.28.2",
"@greenwood/plugin-import-css": "^0.28.2",
"@greenwood/plugin-postcss": "^0.28.2",
"@greenwood/plugin-renderer-puppeteer": "^0.28.2",
"@greenwood/cli": "^0.29.0",
"@greenwood/plugin-google-analytics": "^0.29.0",
"@greenwood/plugin-graphql": "^0.29.0",
"@greenwood/plugin-import-css": "^0.29.0",
"@greenwood/plugin-postcss": "^0.29.0",
"@greenwood/plugin-renderer-puppeteer": "^0.29.0",
"@ls-lint/ls-lint": "^1.10.0",
"@mapbox/rehype-prism": "^0.5.0",
"@web/test-runner": "^0.13.13",
Expand Down
2 changes: 1 addition & 1 deletion src/components/blog-post/blog-post.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css, html, LitElement } from 'lit-element';
import client from '@greenwood/plugin-graphql/core/client';
import client from '@greenwood/plugin-graphql/src/core/client.js';
import GraphQuery from '../../queries/graph.gql';

class BlogPostComponent extends LitElement {
Expand Down
4 changes: 2 additions & 2 deletions src/components/blog-posts-list/blog-posts-list.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css, html, LitElement } from 'lit-element';
import client from '@greenwood/plugin-graphql/core/client';
import client from '@greenwood/plugin-graphql/src/core/client.js';
import ChildrenQuery from '../../queries/children.gql';

class BlogPostsListComponent extends LitElement {
Expand Down Expand Up @@ -50,7 +50,7 @@ class BlogPostsListComponent extends LitElement {
const response = await client.query({
query: ChildrenQuery,
variables: {
parent: 'blog'
parent: '/blog'
}
});

Expand Down
Loading

0 comments on commit 109d2d3

Please sign in to comment.