Skip to content

Commit 25321eb

Browse files
authored
Merge pull request #42 from compliance-framework/gc-fix-bump-deps
fix: bump deps
2 parents 209fd01 + fa13d67 commit 25321eb

6 files changed

Lines changed: 19853 additions & 12851 deletions

File tree

.github/workflows/test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Node.js
2626
uses: actions/setup-node@v3
2727
with:
28-
node-version: 16.x
28+
node-version: 20.x
2929
cache: yarn
3030
- name: Install dependencies
3131
run: yarn install --frozen-lockfile --non-interactive

docusaurus.config.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// @ts-check
22
// Note: type annotations allow type checking and IDEs autocompletion
33

4-
const lightCodeTheme = require('prism-react-renderer/themes/github');
5-
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
4+
const {themes: prismThemes} = require('prism-react-renderer');
5+
const lightCodeTheme = prismThemes.github;
6+
const darkCodeTheme = prismThemes.dracula;
67
const organizationName = 'compliance-framework';
78
const projectName = 'docs';
89

0 commit comments

Comments
 (0)