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.
| Template driven forms: | |
| viewProviders: [ | |
| { provide: ControlContainer, useExisting: NgForm } | |
| ] | |
| Reactive | |
| viewProviders: [ | |
| { provide: ControlContainer, useExisting: FormGroupDirective } | |
| ] |
| #!/bin/bash | |
| echo "Converting HDR" | |
| # https://github.com/dariomanesku/cmft | |
| SCRIPT_DIR=${0%/*} | |
| HDR_FILE=${1%%.*} | |
| # 8bits 128x128 |
| <?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> |
| name: Test develop and feature branches | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - "feature/*" | |
| jobs: | |
| test: |
| 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, |
| /* global AFRAME THREE */ | |
| if (typeof AFRAME === 'undefined') { | |
| throw new Error('Component attempted to register before AFRAME was available.'); | |
| } | |
| var radToDeg = THREE.Math.radToDeg; | |
| /** | |
| * Example component for A-Frame. |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <svg width="960" height="500"></svg> | |
| <script src="https://d3js.org/d3.v4.min.js"></script> | |
| <script> | |
| var svg = d3.select("svg"), | |
| width = +svg.attr("width"), | |
| height = +svg.attr("height"), | |
| transform = d3.zoomIdentity;; |
| import { Injectable } from '@angular/core'; | |
| @Injectable() | |
| export class LocalStorageService { | |
| public localStorage: any; | |
| constructor() { | |
| if (!localStorage) { | |
| throw new Error('Current browser does not support Local Storage'); |
| import { | |
| Http, | |
| ConnectionBackend, | |
| Headers, | |
| Request, | |
| RequestOptions, | |
| RequestOptionsArgs, | |
| Response, | |
| RequestMethod, | |
| } from '@angular/http'; |