Skip to content

Instantly share code, notes, and snippets.

View moacode's full-sized avatar
Converting Coffee into Code...

Josh moacode

Converting Coffee into Code...
View GitHub Profile
@moacode
moacode / poolmeta.json
Created March 3, 2021 09:46
MOA test stakepool meta json
{
"name": "Moa Test Pool",
"description": "The pool that tests all the pools",
"ticker": "MOA",
"homepage": "https://moa.stakepool.co.nz"
}
@moacode
moacode / webpack.dev.js
Created March 17, 2020 11:31
Webpack dev config with support for build types using the `--env` flag. For example, `--env.BUILD_TYPE=legacy`.
// webpack.dev.js - developmental builds
const LEGACY_CONFIG = "legacy";
const MODERN_CONFIG = "modern";
// node modules
const merge = require("webpack-merge");
const path = require("path");
const webpack = require("webpack");
const DashboardPlugin = require("webpack-dashboard/plugin");