UNPKG

@nurun-sf/spark-component

Version:

A tool for building spark components

14 lines (9 loc) 373 B
'use strict'; const webpack = require('webpack'); const getWebpackCallback = require('../lib/get-webpack-callback'); const getSimpleWebpackOptions = require('../lib/get-simple-webpack-options'); module.exports = function (done) { var opts = getSimpleWebpackOptions('tests/_specs.js'); var callback = getWebpackCallback('specs', done); webpack(opts, callback); };