Skip to content

Commit

Permalink
chore/upgrade greenwood v0.30.0 (#296)
Browse files Browse the repository at this point in the history
* upgrade greenwood v0.30.0

* bump to alpha.2 and adapt for breaking changes

* bump node version for netlify

* update github actions

* support WTR with import raw plugin

* bump to greenwood v0.30.0-alpha.3

* upgrade alpha.6

* bump to greenwood v0.30.0-alpha.7

* v0.30.0 final
  • Loading branch information
thescientist13 authored Nov 2, 2024
1 parent 1973416 commit 8163bcd
Show file tree
Hide file tree
Showing 32 changed files with 1,318 additions and 245 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ jobs:
build:
runs-on: ubuntu-20.04

strategy:
matrix:
node: [18]

steps:
- uses: actions/checkout@v1
- name: Install Chromium Library Dependencies
Expand All @@ -15,7 +19,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.12.1
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.12.1
18.20.2
4 changes: 2 additions & 2 deletions greenwood.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { greenwoodPluginGoogleAnalytics } from '@greenwood/plugin-google-analytics';
import { greenwoodPluginGraphQL } from '@greenwood/plugin-graphql';
import { greenwoodPluginImportCss } from '@greenwood/plugin-import-css';
import { greenwoodPluginImportRaw } from '@greenwood/plugin-import-raw';
import { greenwoodPluginPostCss } from '@greenwood/plugin-postcss';
import { greenwoodPluginRendererPuppeteer } from '@greenwood/plugin-renderer-puppeteer';

Expand All @@ -13,7 +13,7 @@ export default {

plugins: [
greenwoodPluginPostCss(),
greenwoodPluginImportCss(),
greenwoodPluginImportRaw(),
greenwoodPluginGraphQL(),
greenwoodPluginRendererPuppeteer(),
greenwoodPluginGoogleAnalytics({
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
skip_processing = true

[build.environment]
NODE_VERSION = "18.12.1"
NODE_VERSION = "18.20.2"
Loading

0 comments on commit 8163bcd

Please sign in to comment.