The plugin of packing ere-games for webpack.
  • JavaScript 100%
Find a file
2026-01-18 10:34:10 +08:00
src feat: adds sdk version check for kojo-loader 2026-01-18 10:34:10 +08:00
.gitignore feat: init 2025-03-16 11:04:50 +08:00
package.json feat: adds sdk version check for kojo-loader 2026-01-18 10:34:10 +08:00
README.md feat: init 2025-03-16 11:04:50 +08:00

ere-webpack-plugin

webpack 的 ere 游戏插件,用于将 ere 游戏项目打包为安卓游戏包。

The plugin of ere games for webpack, for packing ere game project into android bundle.

开始/Getting Started

使用 npm 安装 ere-webpack-plugin:

To begin, you'll need to install ere-webpack-plugin:

npm install -save-dev git+https://gitgud.io/umaera/engine/ere-webpack-plugin.git

然后在 webpack.config.js 中注册:

Then register it in webpack.config.js:

// webpack.config.js
const EreWebpackPlugin = require('ere-webpack-plugin');
// ...
plugins: [new EreWebpackPlugin()]
// ...