So we only need to specify a list of globs to the content prop of the tailwind.config.js
@nrwl/workspace contains a function called createGlobPatternsForDependencies which can generate an array of globs that you can pass to tailwind.
| import { Router } from '@angular/router'; | |
| import { Action, Selector, State, StateContext, Store } from '@ngxs/store'; | |
| import { AngularFireAuth } from 'angularfire2/auth'; | |
| import * as firebase from 'firebase'; | |
| import { take, tap } from 'rxjs/operators'; | |
| import { | |
| CheckSession, | |
| LoginWithFacebook, |
| name: Test develop and feature branches | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - "feature/*" | |
| jobs: | |
| test: |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <array> | |
| <dict> | |
| <key>ApplicationIdentifier</key> | |
| <string>com.microsoft.VSCode</string> | |
| <key>ApplicationName</key> | |
| <string>Visual Studio Code</string> | |
| <key>DisplayName</key> |
| #!/bin/bash | |
| echo "Converting HDR" | |
| # https://github.com/dariomanesku/cmft | |
| SCRIPT_DIR=${0%/*} | |
| HDR_FILE=${1%%.*} | |
| # 8bits 128x128 |
| Template driven forms: | |
| viewProviders: [ | |
| { provide: ControlContainer, useExisting: NgForm } | |
| ] | |
| Reactive | |
| viewProviders: [ | |
| { provide: ControlContainer, useExisting: FormGroupDirective } | |
| ] |