see Angular Buch (iX 3. Ausgabe)
instead of https://semantic-ui.com/ we use:
"ignorePatterns": ['**','!src/**/book-details*.ts'],
"logLevel": "trace",
"tempDirName": "stryker-tmp"
"inPlace": true
but DON'T use
stryker run --ignorePatterns '**','!src/**/book-details*.ts' --fileLogLevel trace
because of stryker-mutator/stryker-js#3688
even with inPlace
which you allways need to set :
"inPlace": true
flag to true
instead only use the stryker config file mutate
pattern to include only specific files for testing
- use https://github.com/peaceiris/actions-gh-pages
npm run deploy
doesn't work inside an github action because of authentication problem- instead we use:
- name: Deploy
if: success()
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist/book-monkey
enable_jekyll: true
ng add @ngrx/store
ng add @ngrx/store-devtools
ng add @ngrx/effects
ng add @ngrx/schematics --defaultCollection
check if this is added to app.module.ts
:
StoreModule.forRoot({}, {}),
StoreDevtoolsModule.instrument(
{ maxAge: 25, logOnly: environment.production }
)
then:
ng g feature books/store/book --module books/books --api --defaults
for the moment: commented out, since it gets intellij to show errors at jasmine.expect()....