UNPKG

295 BJavaScriptView Raw
1#! /usr/bin/env node
2var fs = require("fs")
3var current_dir = process.cwd()
4var packageJson = require(current_dir + "/package.json")
5var framework_loc = current_dir + "/dist/measurement-framework.js"
6
7fs.symlink(framework_loc, function (res) {
8 console.log(res)
9})
10
11//console.log(packageJson)
\No newline at end of file