8000 GitHub - bodote/book-monkey: passend zu Buch "Angular, Grundlagen..." jedoch verschiedenlich abgewandelt
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bodote/book-monkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BookMonkey

see Angular Buch (iX 3. Ausgabe)

instead of https://semantic-ui.com/ we use:

additional stryker config optinos:

"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

stryker Dashboard

Github Actions:

Deploy :

      - name: Deploy
        if: success()
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: dist/book-monkey
          enable_jekyll: true

ngrx additions:

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

cypress.config.ts

for the moment: commented out, since it gets intellij to show errors at jasmine.expect()....

About

passend zu Buch "Angular, Grundlagen..." jedoch verschiedenlich abgewandelt

Resources

Stars

Watchers

Forks

Packages

No packages published
0