Flarp
Flarp
This is nearly a year late, but I found a fix. For some reason, if the namespace to URI mapping is in your custom namespace shortcuts, the explore result tab...
US here, cannot see it anywhere
Another nit pick, "node" should be capitalized.
Whoops, my bad. @anku255 Modify the `package.json` file, replacing the version number of `@freecodecamp/curriculum` with `file:/path/to/local/curriculum`, an installation of the curriculum repo from Git.
Glad to be helpful, but does anyone have a work around for this right now, where I can run each item in curriculum independent of learn?
@ojeytonwilliams That should do it, I'll test that out soon (either tonight or tomorrow) and fill you in on how it goes, thank you!
@ojeytonwilliams It works wonders! Thank you so much!
Actually, this doesn't solve _everything_, the changes in `learn` are not reflected in `curriculum`, and vice versa. Also, you need to recompile if you make a new page.
@ojeytonwilliams My approach would be to use [require.resolve()](https://nodejs.org/api/modules.html#modules_require_resolve_request_options) to locate the module directory (as said above, I don't use the default node_modules dir, as it's counter-intuitive for development), and then...
https://github.com/freeCodeCamp/learn/blob/30b5516f826e98ad23daee51f2e4ed89d54c05b6/plugins/fcc-source-challenges/gatsby-node.js#L47 This line seems to already do what we want, it's simply commented out. I'll uncomment and get back to you on anything that occurs.