tree: ffcfc249b6e74b75c4dce1a5b7f18ff064c740c7 [path history] [tgz]
  1. modules/
  2. karma.conf.js
  3. Makefile
  4. package.json
  5. README.md
  6. webpack.config.js
infra-sk/README.md

This is the common set of custom elements used by Skia Infrastructure. It is built on common-sk and elements-sk using pulito

There is documentation for each element.

Use

To use this library you should add an alias to your webpack config:

const { resolve } = require('path')

module.exports = (env, argv) => {
  let config = commonBuilder(env, argv, __dirname);
  config.resolve = config.resolve || {};
  config.resolve.alias = config.resolve.alias || {};
  config.resolve.alias['infra-sk'] = resolve(__dirname, '../infra-sk/');
  return config;
}

Disclaimer

This is not an officially supported Google product.