DEV Community

Cover image for Build and publish a Component Library - React, TypeScript, Storybook
abhijitdotsharma
abhijitdotsharma

Posted on • Updated on

Build and publish a Component Library - React, TypeScript, Storybook

Liquid syntax error: Unknown tag 'endraw'

Top comments (11)

Collapse
 
gabrielmlinassi profile image
Gabriel Linassi

In my company we do have a set of components we share amongst multiple projects and we use TurboRepo monorepo for that. We thought about creating another repo but mono ended up being a much better option.

Collapse
 
hidaytrahman profile image
Hidayt Rahman

Nice article, I am getting issue with the command npm run rollup-build-lib throws below error

[!] SyntaxError: Unexpected identifier
    at ESMLoader.moduleStrategy (node:internal/modules/esm/translators:139:18)
    at ESMLoader.moduleProvider (node:internal/modules/esm/loader:236:14)
    at async link (node:internal/modules/esm/module_job:67:21)
Enter fullscreen mode Exit fullscreen mode

Do you have any idea

Collapse
 
abhijitdotsharma profile image
abhijitdotsharma

github.com/rollup/rollup/issues/3594

One answer might be to try and check if your node is updated or not.

Collapse
 
hidaytrahman profile image
Hidayt Rahman • Edited

I have removed this line

import packageJson from "./package.json" assert { type: "json" };

and providedcjs and esm path directly in the file field, just to make it work.

Just curious to know is this good pratice?

Collapse
 
hidaytrahman profile image
Hidayt Rahman

Its different issue, may i know your node version ?

Thread Thread
 
abhijitdotsharma profile image
abhijitdotsharma

Hi Hidayat while I did not fully understand how you got that error, I am grateful you brought it up as I tried to test my article today by creating a new Component Library and I noticed that I had made 2-3 typo's which when I removed, resulted in correct compilation of the library.

rollup-lib -c should have been rollup -c, corrected now

My current node version is 18.14.2 LTS and I think if you try it once again it will work. Thank you for your comment once again and hit me back if that doesn't work.

Thread Thread
 
hidaytrahman profile image
Hidayt Rahman

No worry, issue has been resolved same day

Collapse
 
kaptn3 profile image
Victoria Kapitonenko

Thank you very much for this tutorial! I tried to create cra-template with your configurations, maybe it will be convenient for someone github.com/rebase-agency/cra-templ...

Collapse
 
nityam01 profile image
Nityam

Wow.... it was a really great read. I really needed this.👍🤩

Collapse
 
shaheem_mpm profile image
Mohammed Shaheem P

Much needed one ❤️ Just built this UI library for my company following this article: npmjs.com/package/@teamartizen/rea...

Collapse
 
warlyware profile image
Dan Ward

pure gold. many thanks!