Skip to content

Commit

Permalink
features/display3D: update Webpack and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Sep 21, 2023
1 parent 02993bd commit 29dc1fe
Show file tree
Hide file tree
Showing 27 changed files with 8,552 additions and 14,300 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,42 @@ jobs:
name: NyanCat
path: demos/NyanCat/dist
if-no-files-found: error
- name: Build features/display3D/HelloTriangle
working-directory: features/display3D/HelloTriangle
run: |
npm ci
npm run build:prod
env:
CI: true
- uses: actions/upload-artifact@v3
with:
name: HelloTriangle
path: features/display3D/HelloTriangle/dist
if-no-files-found: error
- name: Build features/display3D/Stage3DCamera
working-directory: features/display3D/Stage3DCamera
run: |
npm ci
npm run build:prod
env:
CI: true
- uses: actions/upload-artifact@v3
with:
name: Stage3DCamera
path: features/display3D/Stage3DCamera/dist
if-no-files-found: error
- name: Build features/display3D/Stage3DMipmap
working-directory: features/display3D/Stage3DMipmap
run: |
npm ci
npm run build:prod
env:
CI: true
- uses: actions/upload-artifact@v3
with:
name: Stage3DMipmap
path: features/display3D/Stage3DMipmap/dist
if-no-files-found: error
- name: Build features/events/CreatingAMainLoop
working-directory: features/events/CreatingAMainLoop
run: |
Expand Down
4 changes: 2 additions & 2 deletions features/display3D/HelloTriangle/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules
dist/app.js
node_modules/
dist/
*.map
Loading

0 comments on commit 29dc1fe

Please sign in to comment.