Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: NodeJS with Webpack

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
push:
branches: ["master"]
pull_request:
branches: ["master"]

jobs:
build:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]
strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v3
steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npx webpack
- name: Build
run: |
npm install
npx webpack
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![NodeJS with Webpack](https://github.com/BarthPaleologue/babylonjs-template/actions/workflows/webpack.yml/badge.svg)](https://github.com/BarthPaleologue/babylonjs-template/actions/workflows/webpack.yml)

![img.png](cover.png)
[![img.png](cover.png)](https://barthpaleologue.github.io/WebTide/)

WebTide is an ocean simulation based on [Jerry Tessendorf's paper](https://people.computing.clemson.edu/~jtessen/reports/papers_files/coursenotes2004.pdf), implemented on WebGPU with BabylonJS.

Expand Down
24 changes: 11 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
{
"devDependencies": {
"@babylonjs/core": "^6.47.0",
"@babylonjs/core": "^7.42.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@webpack-cli/generators": "^3.0.7",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"css-loader": "^6.11.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.8.1",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"sass": "^1.72.0",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-shader-loader": "^2.0.2",
"typedoc": "^0.25.12",
"typedoc-material-theme": "^1.0.2",
"typedoc-plugin-missing-exports": "^2.2.0",
"typedoc": "^0.25.13",
"typedoc-material-theme": "^1.2.0",
"typedoc-plugin-missing-exports": "^2.3.0",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^4.2.3",
"webpack": "^5.90.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
"webpack-dev-server": "^4.15.2"
},
"version": "1.0.0",
"description": "BabylonJS template with webpack and Typescript",
Expand Down
Loading
Loading