Closed NateBaldwinDesign closed 8 months ago
@NateBaldwinDesign did you add the package to your project? The first step in that documentation you mentioned says to install the package with npm i @adobe/leonardo-contrast-colors
. If you're using yarn the command is yarn add @adobe/leonardo-contrast-colors
. Verify that the package is listed in your dependencies in your package.json
file.
Yes, I have it installed as documented. I am going to try a few other things to see if I can replicate the problem on a different computer to verify that it's not just some system issue.
I have confirmed that it is not working properly on a new project as well as previous projects that have worked in the past.
I think I found the problem. The files are getting named with the .mjs
extension instead of .js
, which is messing everything up, and the dist
director seemed to go missing around alpha.15. I'll look to see if I can republish it with the correct extension. https://unpkg.com/browse/@adobe/leonardo-contrast-colors@1.0.0-alpha.17/
Hi, any progress on this? For me, the latest version that works is @adobe/leonardo-contrast-colors@1.0.0-alpha.13
Hello, any progress on this?
As a temporary fix, you can use this command to install it via NPM. It works fine in TS now with this command.
npm install "https://gitpkg.now.sh/adobe/leonardo/packages/contrast-colors?main"
This just create an NPM package from the main branch in the correct subfolder (Using the site https://gitpkg.vercel.app/)
extensions being changed to .mjs
was done in #166 (between 1.0.0-alpha.13
and 1.0.0-alpha.14
), and extensions were reverted back among the changes from #207, but version 1.0.0-alpha.18
has not been published to npm, and either way those changes aren't in the changelog for 1.0.0-alpha.18
.
once a new working version is published to the registry i'd probably recommend deprecating^1 versions 1.0.0-alpha.14
to 1.0.0-alpha.17
because those are all broken.
Bump :) same issue workaround is good but this is not a good sign for this library I stumbled upon
I'm working to release a fix. I'll close this issue when I get it out.
Any progress?
Any update? 🙏 I'm using the 1.0.0-alpha.13 version but I would like to use the latest :)
This has been fixed with the latest release. If any problems with the latest package persist, let me know.
Description
When installing Leonardo into a new React project, basic imports fail to load and return an error.
Tried with both
create-react-app
andvite
with same results. Vite error report gave clearest possible cause of the issue:Steps to reproduce
yarn dev
/yarn start
)* as Leo
,{Color, Theme}
, etc) from@adobe/leonardo-contrast-colors
(as documented here)Expected behavior
Expect the package to be imported using the import statements here
Screenshots
Leonardo package and version
@adobe/leonardo-contrast-colors
version 1.0.0-alpha.17Environment
Additional context