Skip to content

Commit

Permalink
Adding ngrx-cognito library, beginning to fill it out
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianKopp committed Dec 9, 2018
1 parent 02c6ae8 commit b953a82
Show file tree
Hide file tree
Showing 36 changed files with 1,541 additions and 151 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

# dependencies
/node_modules
node_modules/

# IDEs and editors
/.idea
Expand Down
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"printWidth": 130
}
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"prettier.printWidth": 120,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true
}
40 changes: 40 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,46 @@
}
}
}
},
"ngrx-cognito": {
"root": "projects/ngrx-cognito",
"sourceRoot": "projects/ngrx-cognito/src",
"projectType": "library",
"prefix": "cog",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/ngrx-cognito/tsconfig.lib.json",
"project": "projects/ngrx-cognito/ng-package.json"
},
"configurations": {
"production": {
"project": "projects/ngrx-cognito/ng-package.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ngrx-cognito/src/test.ts",
"tsConfig": "projects/ngrx-cognito/tsconfig.spec.json",
"karmaConfig": "projects/ngrx-cognito/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/ngrx-cognito/tsconfig.lib.json",
"projects/ngrx-cognito/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "ngrx-cognito-app"
Expand Down
Loading

0 comments on commit b953a82

Please sign in to comment.