bulls-cows-solver
Version:
Get all the possible answers for Bulls and Cows game, based on the history of guesses in one round.
21 lines (20 loc) • 387 B
JavaScript
const nodeExternals = require('webpack-node-externals');
const fs = require('fs');
module.exports = {
mode: 'production',
target: 'node',
externals: [nodeExternals()],
entry: {
'__test__':{
publicPath:'/',
import:'./test.js'
}
},
output:{
path: __dirname,
filename:'[name].js'
},
optimization: {
minimize: false
}
};