You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
The pace dependency doesn't resolve properly (anymore). Changing it to pace-progress (the import) and actually (strangely enough) in the pace-progress project itself fixes it.
Bootstrap app-web wouldn't properly build the actor-sdk (web) probably likely due to this so I had to go in (node_modules) and do a manual npm i. After that I also found copyfiles to be missing, I guess that is in the build process (I didn't have NODE_ENV on production and such, it should have installed dev-dependencies which makes me think (goes and check, confirms) that copyfiles (npm package) isn't listed as dev-dependency (it isn't). It could be it only works when installed as a global (what I did since it so hastily assumed it to be available on $PATH. But if it works as a package dependency, I would suggest to add this to dev-dependencies.
So that is something you may wish to fix and which could also have been a reason the build process halted (gulp/webpack).
Finally I found normalize.css didn't properly install either, due to possibly the previous obstacles. After fixing these three things, doing a npm run build sufficed and after which I could finally build the bootstrap web-app also. Since that project doesn't have issues on, figured I would post it here (and since the lines at fault are found here too I guess, it does belong here).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The
pace
dependency doesn't resolve properly (anymore). Changing it topace-progress
(the import) and actually (strangely enough) in the pace-progress project itself fixes it.Bootstrap app-web wouldn't properly build the actor-sdk (web) probably likely due to this so I had to go in (node_modules) and do a manual
npm i
. After that I also foundcopyfiles
to be missing, I guess that is in the build process (I didn't haveNODE_ENV
onproduction
and such, it should have installed dev-dependencies which makes me think (goes and check, confirms) thatcopyfiles
(npm package) isn't listed as dev-dependency (it isn't). It could be it only works when installed as a global (what I did since it so hastily assumed it to be available on$PATH
. But if it works as a package dependency, I would suggest to add this to dev-dependencies.So that is something you may wish to fix and which could also have been a reason the build process halted (gulp/webpack).
Finally I found
normalize.css
didn't properly install either, due to possibly the previous obstacles. After fixing these three things, doing anpm run build
sufficed and after which I could finally build the bootstrap web-app also. Since that project doesn't have issues on, figured I would post it here (and since the lines at fault are found here too I guess, it does belong here).The text was updated successfully, but these errors were encountered: