Skip to content

Commit

Permalink
fixed references
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Feb 11, 2024
1 parent 5c6aa98 commit 64f61b8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,14 @@ jobs:
node-version: 20
cache: 'pnpm'
- run: pnpm install --frozen-lockfile

- name: Test
run: pnpm test
env:
CI: true

- name: Build
run: pnpm prod:build
env:
CI: true

- name: Release to GH pages if on master
if: ${{github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'}}
uses: crazy-max/ghaction-github-pages@v1
Expand Down
2 changes: 1 addition & 1 deletion webpack.development.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const path = require('path');
const BUILDDIR = path.resolve(__dirname, process.env['npm_config_package_output']);
const BUILDDIR = path.resolve(__dirname, process.env.PACKAGE_OUTPUT);

module.exports = [{
name: 'client',
Expand Down
2 changes: 1 addition & 1 deletion webpack.documentation.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const path = require('path');
const BUILDDIR = path.resolve(__dirname, process.env['npm_config_package_output']);
const BUILDDIR = path.resolve(__dirname, process.env.PACKAGE_OUTPUT);

module.exports = [{
name: 'client',
Expand Down
2 changes: 1 addition & 1 deletion webpack.production.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const path = require('path');
const BUILDDIR = path.resolve(__dirname, process.env['npm_config_package_output']);
const BUILDDIR = path.resolve(__dirname, process.env.PACKAGE_OUTPUT);

module.exports = [{
name: 'client',
Expand Down

0 comments on commit 64f61b8

Please sign in to comment.