-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from BarthPaleologue/FasterWebpackBuild
config tweaks for speed
- Loading branch information
Showing
4 changed files
with
170 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,72 @@ | ||
{ | ||
"devDependencies": { | ||
"@babylonjs/core": "^7.38.0", | ||
"@babylonjs/gui": "^7.38.0", | ||
"@babylonjs/havok": "^1.3.10", | ||
"@babylonjs/inspector": "^7.38.0", | ||
"@babylonjs/loaders": "^7.38.0", | ||
"@brianchirls/game-input": "^0.1.1", | ||
"@eslint/compat": "^1.2.4", | ||
"@eslint/eslintrc": "^3.2.0", | ||
"@eslint/js": "^9.16.0", | ||
"@tauri-apps/cli": "2.1.0", | ||
"@types/d3": "^7.4.3", | ||
"@types/jest": "^29.5.14", | ||
"@types/seedrandom": "^3.0.8", | ||
"@types/webpack": "^5.28.5", | ||
"@types/webpack-env": "^1.18.5", | ||
"@typescript-eslint/eslint-plugin": "^8.17.0", | ||
"@typescript-eslint/parser": "^8.17.0", | ||
"@webpack-cli/generators": "^3.0.7", | ||
"cross-env": "^7.0.3", | ||
"css-loader": "^7.1.2", | ||
"d3": "^7.9.0", | ||
"eslint": "^9.16.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
"extended-random": "^1.2.2", | ||
"fast-simplex-noise": "^4.0.0", | ||
"globals": "^15.13.0", | ||
"handle-sliderjs": "^1.3.1", | ||
"html-loader": "^5.1.0", | ||
"html-webpack-plugin": "^5.6.3", | ||
"http-server": "^14.1.1", | ||
"i18next": "^24.0.5", | ||
"jest": "^29.7.0", | ||
"mini-css-extract-plugin": "^2.9.2", | ||
"prettier": "^3.4.2", | ||
"raw-loader": "^4.0.2", | ||
"sass": "^1.82.0", | ||
"sass-loader": "^16.0.4", | ||
"squirrel-noise": "^1.0.0", | ||
"style-loader": "^4.0.0", | ||
"terrain-generation": "^1.8.0", | ||
"ts-jest": "^29.2.5", | ||
"ts-loader": "^9.5.1", | ||
"ts-node": "^10.9.2", | ||
"ts-shader-loader": "^2.0.2", | ||
"typedoc": "^0.27.3", | ||
"typedoc-github-theme": "^0.2.0", | ||
"typedoc-plugin-missing-exports": "^3.1.0", | ||
"typescript": "~5.7.2", | ||
"typescript-plugin-css-modules": "^5.1.0", | ||
"webpack": "^5.97.1", | ||
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^5.1.0" | ||
}, | ||
"version": "1.9.0", | ||
"description": "Cosmos Journeyer is a space exploration game featuring fully explorable planets, across millions of star systems. It is built using Babylon.JS, and a lot of passion.", | ||
"name": "cosmos-journeyer", | ||
"scripts": { | ||
"build": "webpack --mode=production --node-env=production", | ||
"build:dev": "webpack --mode=development", | ||
"build:prod": "webpack --mode=production --node-env=production", | ||
"watch": "webpack --watch", | ||
"serve": "webpack serve", | ||
"serve:prod": "http-server dist -p 8080", | ||
"format:check": "prettier --config .prettierrc src//**/*.{js,jsx,json,ts} --check", | ||
"format": "prettier --config .prettierrc src//**/*.{js,json,ts} --write", | ||
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest", | ||
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage", | ||
"docs": "typedoc --options typedoc.json", | ||
"serve:docs": "http-server docs -p 8081", | ||
"lint:check": "eslint src/ts --config eslint.config.mjs", | ||
"lint:fix": "eslint src/ts --fix --config eslint.config.mjs" | ||
} | ||
"devDependencies": { | ||
"@babylonjs/core": "^7.38.0", | ||
"@babylonjs/gui": "^7.38.0", | ||
"@babylonjs/havok": "^1.3.10", | ||
"@babylonjs/inspector": "^7.38.0", | ||
"@babylonjs/loaders": "^7.38.0", | ||
"@brianchirls/game-input": "^0.1.1", | ||
"@eslint/compat": "^1.2.4", | ||
"@eslint/eslintrc": "^3.2.0", | ||
"@eslint/js": "^9.16.0", | ||
"@tauri-apps/cli": "2.1.0", | ||
"@types/d3": "^7.4.3", | ||
"@types/jest": "^29.5.14", | ||
"@types/seedrandom": "^3.0.8", | ||
"@types/webpack": "^5.28.5", | ||
"@types/webpack-env": "^1.18.5", | ||
"@typescript-eslint/eslint-plugin": "^8.17.0", | ||
"@typescript-eslint/parser": "^8.17.0", | ||
"@webpack-cli/generators": "^3.0.7", | ||
"cross-env": "^7.0.3", | ||
"css-loader": "^7.1.2", | ||
"d3": "^7.9.0", | ||
"eslint": "^9.16.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
"extended-random": "^1.2.2", | ||
"fast-simplex-noise": "^4.0.0", | ||
"globals": "^15.13.0", | ||
"handle-sliderjs": "^1.3.1", | ||
"html-loader": "^5.1.0", | ||
"html-webpack-plugin": "^5.6.3", | ||
"http-server": "^14.1.1", | ||
"i18next": "^24.0.5", | ||
"jest": "^29.7.0", | ||
"mini-css-extract-plugin": "^2.9.2", | ||
"prettier": "^3.4.2", | ||
"raw-loader": "^4.0.2", | ||
"sass": "^1.82.0", | ||
"sass-loader": "^16.0.4", | ||
"squirrel-noise": "^1.0.0", | ||
"style-loader": "^4.0.0", | ||
"terrain-generation": "^1.8.0", | ||
"ts-jest": "^29.2.5", | ||
"ts-loader": "^9.5.1", | ||
"ts-node": "^10.9.2", | ||
"ts-shader-loader": "^2.0.2", | ||
"typedoc": "^0.27.3", | ||
"typedoc-github-theme": "^0.2.0", | ||
"typedoc-plugin-missing-exports": "^3.1.0", | ||
"typescript": "~5.7.2", | ||
"typescript-plugin-css-modules": "^5.1.0", | ||
"webpack": "^5.97.1", | ||
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^5.1.0" | ||
}, | ||
"version": "1.9.0", | ||
"description": "Cosmos Journeyer is a space exploration game featuring fully explorable planets, across millions of star systems. It is built using Babylon.JS, and a lot of passion.", | ||
"name": "cosmos-journeyer", | ||
"scripts": { | ||
"build": "webpack --mode=production --node-env=production", | ||
"serve": "webpack serve --progress", | ||
"serve:prod": "http-server dist -p 8080", | ||
"format:check": "prettier --config .prettierrc src//**/*.{js,jsx,json,ts} --check", | ||
"format": "prettier --config .prettierrc src//**/*.{js,json,ts} --write", | ||
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest", | ||
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage", | ||
"build:docs": "typedoc --options typedoc.json", | ||
"serve:docs": "http-server docs -p 8081", | ||
"lint:check": "eslint src/ts --config eslint.config.mjs", | ||
"lint:fix": "eslint src/ts --fix --config eslint.config.mjs" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters