learn-co-curriculum / react-hooks-npm-lab

Other
4 stars 5.97k forks source link

Update needed for npm Code-Along #33

Open kyliedarlene opened 5 months ago

kyliedarlene commented 5 months ago

Canvas Link

https://learning.flatironschool.com/courses/7034/pages/npm-code-along?module_item_id=637876

Concern

Line 212 of the README: "Go ahead and run npm run build."

Additional Context

Received the error message:

Could not resolve "./node_modules/date-fns/esm/format/index.js"

Screen Shot 2024-01-09 at 4 46 12 PM

Suggested Changes

My instructor was able to resolve the error by having me change line 3 of color-clock/index.js

FROM import format from "./node_modules/date-fns/esm/format/index.js";

TO import {format} from "date-fns";