Skip to content

Commit

Permalink
fix: correct explanation of lib.flatModuleFile
Browse files Browse the repository at this point in the history
If JSON Schema was applied correctly (as it is now), this caused an all-together different behaviour. Fix up the explanation and the default value, so that it becomes clear how this setting is supposed to work.
  • Loading branch information
dherges committed Jul 14, 2017
1 parent dfc425c commit d95afb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ng-package.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"default": "src/public_api.ts"
},
"flatModuleFile": {
"description": "Filename of the auto-generated flat module file (defaults to the package name as given in `package.json`).",
"description": "Filename of the auto-generated flat module file (if empty, defaults to the package name as given in `package.json`).",
"type": "string",
"default": "index"
"default": ""
},
"externals": {
"description": "A symbol map of external dependencies. The purpose of this map is to correctly bundle a flat module file (with `rollup`). By default, `rxjs` and `@angular/*` dependency symbols are supported.",
Expand Down

0 comments on commit d95afb0

Please sign in to comment.