- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
17 lines
356 B
JavaScript
Executable File
17 lines
356 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
var looseEnvify = require('./');
|
|
var fs = require('fs');
|
|
|
|
if (process.argv[2]) {
|
|
fs.createReadStream(process.argv[2], {encoding: 'utf8'})
|
|
.pipe(looseEnvify(process.argv[2]))
|
|
.pipe(process.stdout);
|
|
} else {
|
|
process.stdin.resume()
|
|
process.stdin
|
|
.pipe(looseEnvify(__filename))
|
|
.pipe(process.stdout);
|
|
}
|