Skip to content

Commit

Permalink
feat(angular): default export of scams to true (#9331)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 committed Mar 15, 2022
1 parent f5a0f7e commit c4f9646
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/generated/api-angular/generators/scam-directive.md
Expand Up @@ -37,7 +37,7 @@ The name of the directive.

### export

Default: `false`
Default: `true`

Type: `boolean`

Expand Down
2 changes: 1 addition & 1 deletion docs/generated/api-angular/generators/scam-pipe.md
Expand Up @@ -37,7 +37,7 @@ The name of the pipe.

### export

Default: `false`
Default: `true`

Type: `boolean`

Expand Down
2 changes: 1 addition & 1 deletion docs/generated/api-angular/generators/scam.md
Expand Up @@ -59,7 +59,7 @@ Specifies if the style will contain `:host { display: block; }`.

### export

Default: `false`
Default: `true`

Type: `boolean`

Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/generators/scam-directive/schema.json
Expand Up @@ -66,7 +66,7 @@
"export": {
"type": "boolean",
"description": "Specifies if the SCAM should be exported from the project's entry point (normally `index.ts`). It only applies to libraries.",
"default": false
"default": true
}
},
"required": ["name"]
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/generators/scam-pipe/schema.json
Expand Up @@ -47,7 +47,7 @@
"export": {
"type": "boolean",
"description": "Specifies if the SCAM should be exported from the project's entry point (normally `index.ts`). It only applies to libraries.",
"default": false
"default": true
}
},
"required": ["name"]
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/generators/scam/schema.json
Expand Up @@ -113,7 +113,7 @@
"export": {
"type": "boolean",
"description": "Specifies if the SCAM should be exported from the project's entry point (normally `index.ts`). It only applies to libraries.",
"default": false
"default": true
}
},
"required": ["name"]
Expand Down

1 comment on commit c4f9646

@vercel
Copy link

@vercel vercel bot commented on c4f9646 Mar 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.