Skip to content

Commit 1f3df12

Browse files
authored
Merge pull request #241 from NAMTeam/fix/dependency-conflicts
fix: postcss issues
2 parents 64f0358 + 8d4bf98 commit 1f3df12

5 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- uses: actions/setup-node@v3
3333
with:
34-
node-version: '16'
34+
node-version: '20'
3535
cache: 'npm'
3636

3737
- name: Install dependencies

layouts/partials/head/stylesheet.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<link rel="stylesheet" href="{{ $css.Permalink | relURL }}">
55
{{ else -}}
66
{{ $options := (dict "targetPath" "main.css" "outputStyle" "compressed" "includePaths" (slice "node_modules")) -}}
7-
{{ $css := resources.Get "scss/app.scss" | toCSS $options | postCSS (dict "config" "config/postcss.config.js") -}}
7+
{{ $css := resources.Get "scss/app.scss" | toCSS $options | postCSS (dict "config" "config/postcss.config.cjs") -}}
88
{{ $secureCSS := $css | resources.Fingerprint "sha512" -}}
99
<link rel="stylesheet" href="{{ $secureCSS.Permalink }}" integrity="{{ $secureCSS.Data.Integrity }}" crossorigin="anonymous">
1010
{{ end -}}

modules.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare module 'purgecss-whitelister';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "namdocs",
33
"description": "Network Addon Mod official documentation",
4-
"version": "48.0",
4+
"version": "49.0.0",
55
"engines": {
66
"node": ">=16.16.0"
77
},

0 commit comments

Comments
 (0)