This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
DefaultUrlSerializer, | |
convertToParamMap, | |
ParamMap, | |
Params, | |
UrlSegment, | |
UrlSegmentGroup, | |
PRIMARY_OUTLET | |
} from '@angular/router'; | |
import { ReplaySubject } from 'rxjs'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var path = require('path'); | |
var process = require('process'); | |
var fs = require('fs'); | |
class Environment { | |
constructor(args) { | |
args = JSON.parse(args).original; | |
const defaultEnv = 'development'; //Set default environment | |
let env; |