-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from kreuzerk/feature/updateCommands
Feature/update commands
- Loading branch information
Showing
19 changed files
with
235 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
# Ignores TypeScript files, but keeps definitions. | ||
!*.d.ts | ||
|
||
*.ts(!**/files/**/*.{ts,json}) | ||
|
||
.idea | ||
|
||
!package.json | ||
jest.config.js | ||
coverage/ | ||
tsconfig.json | ||
tslint.json | ||
.travis.yml | ||
.prettierrc | ||
.prettierignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src/subentry/files/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json", | ||
"schematics": { | ||
"ng-samurai": { | ||
"description": "A blank schematic.", | ||
"factory": "./ng-samurai/index#ngSamurai" | ||
"split-lib": { | ||
"description": "Automatically split your library into multiple chungks", | ||
"factory": "./library-split/index#splitLib" | ||
}, | ||
"submodule": { | ||
"description": "A schematic to generate tree-shakeable sub-module in Angular library (ng-packagr secondary entry point).", | ||
"factory": "./submodule/index#submodule", | ||
"schema": "./submodule/schema.json" | ||
"generate-subentry": { | ||
"description": "A schematic to generate tree-shakeable sub-entry in Angular library (ng-packagr secondary entry point).", | ||
"factory": "./subentry/index#generateSubentry", | ||
"schema": "./subentry/schema.json" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/rules/update-public-api/update-top-level-public-api.rule.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.