Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(angular): default export to true #9331

Merged
merged 1 commit into from Mar 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
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