tree: c5267bc16469fc800601de1d81e39204b5f51cb3 [path history] [tgz]
  1. html_insert_nonce_attribute/
  2. karma_test/
  3. modules/
  4. pulito/
  5. sk_demo_page_server/
  6. BUILD.bazel
  7. html-webpack-inject-attributes-plugin.d.ts
  8. index.bzl
  9. karma.common.ts
  10. karma.conf.ts
  11. Makefile
  12. package-lock.json
  13. package.json
  14. README.md
  15. rollup.config.js
  16. themes.scss
  17. tsconfig.json
  18. 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.