UNPKG

minesweeperjs-engine

Version:

A Javascript implementation of the rules and logic of the classic minesweeper game.

12 lines (10 loc) 243 B
const path = require('path'); module.exports = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'minesweeperjs-engine.js', library: 'minesweeperjs-engine', libraryTarget: 'umd' }, };