Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose the Phaser UI namespace. #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/gulpfile.js/config.js
Expand Up @@ -30,7 +30,7 @@ const PHASER_BUILDS = 'node_modules/phaser-ce/build';
// Note: Other features are missing in the 'no physics' build, like Tilemaps.
// If you're getting exceptions when trying to create these game objects,
// change to another build option listed above.
const PHASER = `${PHASER_BUILDS}/custom/phaser-no-physics.js`;
const PHASER = `${PHASER_BUILDS}/custom/phaser-arcade-physics.js`;

// Build output directories.
exports.dirs = {
Expand Down
4 changes: 3 additions & 1 deletion webpack.config.js
Expand Up @@ -2,7 +2,9 @@ module.exports = {
entry: "./src/index.js",
output: {
path: 'build/',
filename: "phaser-ui.js"
filename: "phaser-ui.js",
library: 'phaserUi',
libraryTarget: 'umd'
}
/*,
module: {
Expand Down