Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 382 Bytes

copy-assets.md

File metadata and controls

23 lines (18 loc) · 382 Bytes

Copy assets

Why?

As a library author you may want to distribute certain assets that are outside of the library compilation such as a CHANGELOG.md or SCSS mixins.

How?

You can copy these assets by using the assets option.

{
  "ngPackage": {
    "assets": [
      "CHANGELOG.md",
      "./styles/**/*.theme.scss"
    ],
    "lib": {
      ...
    }
  }
}