tree: 407af4762ec0b01fd3c3d43f3804e552222ade66 [path history] [tgz]
  1. karma_mocha_test/
  2. modules/
  3. pulito/
  4. BUILD.bazel
  5. html-webpack-inject-attributes-plugin.d.ts
  6. karma.common.ts
  7. karma.conf.ts
  8. Makefile
  9. package-lock.json
  10. package.json
  11. README.md
  12. tsconfig.json
  13. webpack.config.ts
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 the following to your webpack config:

const { resolve } = require('path')

module.exports = (env, argv) => {
  let config = commonBuilder(env, argv, __dirname);
  config.resolve = config.resolve || {};
  config.resolve.modules = [resolve(__dirname, 'node_modules')];
  return config;
}

This change forces module resolution to happen only in the directory where the project's webpack.config.js sits, i.e. the node_modules directory under infra_sk will be ignored, which means that all dependencies for infra-sk have to exist in the projects package.json file.

Disclaimer

This is not an officially supported Google product.