Skip to content

Commit 64f61b8

Browse files
committed
fixed references
1 parent 5c6aa98 commit 64f61b8

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,14 @@ jobs:
2020
node-version: 20
2121
cache: 'pnpm'
2222
- run: pnpm install --frozen-lockfile
23-
2423
- name: Test
2524
run: pnpm test
2625
env:
2726
CI: true
28-
2927
- name: Build
3028
run: pnpm prod:build
3129
env:
3230
CI: true
33-
3431
- name: Release to GH pages if on master
3532
if: ${{github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'}}
3633
uses: crazy-max/ghaction-github-pages@v1

webpack.development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const path = require('path');
2-
const BUILDDIR = path.resolve(__dirname, process.env['npm_config_package_output']);
2+
const BUILDDIR = path.resolve(__dirname, process.env.PACKAGE_OUTPUT);
33

44
module.exports = [{
55
name: 'client',

webpack.documentation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const path = require('path');
2-
const BUILDDIR = path.resolve(__dirname, process.env['npm_config_package_output']);
2+
const BUILDDIR = path.resolve(__dirname, process.env.PACKAGE_OUTPUT);
33

44
module.exports = [{
55
name: 'client',

webpack.production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const path = require('path');
2-
const BUILDDIR = path.resolve(__dirname, process.env['npm_config_package_output']);
2+
const BUILDDIR = path.resolve(__dirname, process.env.PACKAGE_OUTPUT);
33

44
module.exports = [{
55
name: 'client',

0 commit comments

Comments
 (0)