Created
March 21, 2016 14:15
-
-
Save jkimbo/ca53738635880d3b185e to your computer and use it in GitHub Desktop.
This file contains 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
/* eslint-disable no-console */ | |
var fs = require('fs'); | |
var path = require('path'); | |
var BASE_PATH = path.normalize(path.join(__dirname, '../')); | |
var nodeModulesPath = path.join(BASE_PATH, 'node_modules'); | |
function createSymlink(srcPath, destPath) { | |
// if symlink exists delete it | |
try { | |
if (fs.lstatSync(destPath)) { | |
fs.unlinkSync(destPath); | |
} | |
} catch (error) { | |
// symlink doesn't exist | |
} | |
fs.symlinkSync( | |
srcPath, | |
destPath, | |
'dir' | |
); | |
} | |
// src | |
console.log('Creating src symlink'); | |
createSymlink( | |
path.join(BASE_PATH, 'static/js/src'), | |
path.join(nodeModulesPath, 'src') | |
); | |
// apps | |
console.log('Creating apps symlink'); | |
createSymlink( | |
path.join(BASE_PATH, 'static/js/src/apps'), | |
path.join(nodeModulesPath, 'apps') | |
); | |
// lib | |
console.log('Creating lib symlink'); | |
createSymlink( | |
path.join(BASE_PATH, 'static/js/lib'), | |
path.join(nodeModulesPath, 'lib') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment