evaltrees 0.1.0

A simple term-rewriting interpreter that displays intermediate expressions.
Documentation
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");

module.exports = {
	entry: "./src/main.js",
	mode: "development",
	module: {
		rules: [
			{
				test: /\.css$/,
				use: [
					"style-loader",
					{
						loader: "css-loader",
						options: {
							importLoaders: 1,
						},
					},
					"postcss-loader",
				],
			},
		],
	},
	output: {
		path: path.resolve(__dirname, "dist"),
		filename: "main.js",
	},
	plugins: [
		new HtmlWebpackPlugin({
			filename: "index.html",
			template: "./src/index.html",
			title: "evaltrees",
		}),
	],
};