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 was archived by the owner on Apr 26, 2024. It is now read-only.
Think i'll try and try a tool that translates the yarn.lock -> package-lock.json file. I think most of the current failures are related to bumping the packages so I'd like to try and filter out those issues hand handle them separately with the dependabot PRs
Used https://github.com/imsnif/synp to sync the file instead of deleting the yarn.lock and re-running npm install to regenerate a new package-lock.json. This avoids the failures from the dependency bumps
nodejs-website@0.3.0 build-ci /workspace
> gatsby build --prefix-paths
internal/modules/cjs/loader.js:638
throw err;
^
Error: Cannot find module 'lodash.throttle'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)
at Function.Module._load (internal/modules/cjs/loader.js:562:25)
at Module.require (internal/modules/cjs/loader.js:692:17)
at require (internal/modules/cjs/helpers.js:25:18)
at Object.<anonymous> (/workspace/node_modules/gatsby-cli/node_modules/ink/build/instance.js:10:38)
at Module._compile (internal/modules/cjs/loader.js:778:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! nodejs-website@0.3.0 build-ci: `gatsby build --prefix-paths`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the nodejs-website@0.3.0 build-ci script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /builder/home/.npm/_logs/2020-03-25T04_59_47_611Z-debug.log
This file contains hidden or 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
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
None yet
3 participants
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Related to #321 as mentioned Yarn isn't part of the shipped NodeJS distributions, so probably better to stick to NPM for developing the site.
Related Issues