Files
dolt/jsmodules/webpack-config
Erik Arvidsson d6537c74c5 Update clients to use latest eslint (#1699)
And fix new errors that were found.

This also adds tools/run-all-js-tests.py which runs `npm install`
and `npm test` in all directories containing a package.json file.
2016-06-02 09:41:32 -07:00
..
2016-05-30 14:32:28 -07:00
2016-05-30 14:32:28 -07:00

webpack-config is the shared webpack config for noms.

To use without changing the default configuration - fine for most purposes - just run webpack like:

node_modules/.bin/webpack --config node_modules/@attic/webpack-config/index.js ...

webpack-config can also be configured (see configure in index.js), then required as part of a different webpack config, like:

// my.webpack.config.js

module.exports = require('@attic/webpack-config').configure({
  requiredEnvVars: ['MY_ENV_VARIABLE']
});