Closed Raynos closed 4 years ago
Oh, it's a good idea. I will try to describe it the nearest days. Thank you for the idea ^_^.
@Raynos should be straight forward to work on this project after #252 is merged.
checkout updated "Building Hegel from source" section
I tried installing
rush
because I saw arush.json
file.I could not get it to work locally and then i found https://github.com/microsoft/rushstack/issues/886
It sounds like I need to downgrade my global version of
npm
to 5 to work withrush
?Here is the output of
rush update
( https://gist.github.com/Raynos/9bb7f7c46d5f9ddd6f6f86ae93c54949 ).For an alternative approach I attempted to use
npm link
; for examplecd packages/core; npm link
cd packages/cli; npm link @hegel/core
This does not work because the
package/core
folder has noindex.js
only abuild/index.js
.I've hand edited the
package.json
in@hegel/core
to setmain
tobuild/index.js
I have no idea how your publishing tool works and why it only publishes the
build
directory into the NPM tarball and not the entirepackages/core
directory.