mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
var fs = require("fs");
|
|
var path = require("path");
|
|
var serverJsonPath = path.resolve(process.argv[2]);
|
|
module.exports = JSON.parse(
|
|
fs.readFileSync(serverJsonPath, 'utf8').normalize('NFC')
|
|
);
|