Currently, I am in the process of developing two npm modules locally, namely A and B. It is worth noting that A has B as one of its dependencies.
To streamline the development process, I have opted to utilize npm link
for creating symbolic links between package folders. This results in a symlink being present inside the node_modules folder of A, linking it to B's project folder.
However, upon initiating A with node --harmony
, there arises an issue where the runtime raises concerns about B making use of ES6 language features. Interestingly, A itself does not encounter any problems regarding its own utilization of ES6 language features.
Is there a way for me to incorporate a non-transpiled ES6 module as a dependency?