UNPKG

whats-that-gerber

Version:

Identify Gerber and drill files by filenamee

16 lines (12 loc) 336 B
'use strict' const path = require('path') const merge = require('webpack-merge') const {browserScriptConfig} = require('@tracespace/config/webpack') module.exports = merge(browserScriptConfig(__dirname), { entry: { 'whats-that-gerber': path.join(__dirname, 'index.js'), }, output: { library: 'whatsThatGerber', }, })