Coder Social home page Coder Social logo

Comments (9)

MurhafSousli avatar MurhafSousli commented on June 20, 2024 1

I am afraid this is out of the scope for this project.

This is just a wrapper package of highlight.js and it depends on it, it works the standard npm. for other tools - developers should figure it out on their own.

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

its ngx-highlightjs

from ngx-highlightjs.

BppleMan avatar BppleMan commented on June 20, 2024

its ngx-highlightjs

@MurhafSousli

That's a typo, but the problem remains

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

I don't use pnpm, shouldn't it work like yarn? or I have to publish the package to pnpm?

from ngx-highlightjs.

thekhegay avatar thekhegay commented on June 20, 2024

@MurhafSousli I think the problem is with highlight.js resolving. pnpm or yarn pnp doesn't linking it.

Possible solution is installing directly to project:
pnpm install highlight.js

from ngx-highlightjs.

thekhegay avatar thekhegay commented on June 20, 2024

@MurhafSousli second option:

add to .npmrc:
public-hoist-pattern[]=*highlight.js*

from ngx-highlightjs.

thekhegay avatar thekhegay commented on June 20, 2024

@MurhafSousli so the idea is to make ngx-highlightjs works like solid package. Library should work like line-numbers

example:

coreLibraryLoader: () => import('highlight.js/lib/core'),
languages: {
  css: () => import('highlight.js/lib/languages/css'),
  scss: () => import('highlight.js/lib/languages/scss'),
  typescript: () => import('highlight.js/lib/languages/typescript'),
  xml: () => import('highlight.js/lib/languages/xml'),
},

should be replaced with:

coreLibraryLoader: () => import('ngx-highlightjs/highlight-lib'),
languages: {
  css: () => import('ngx-highlightjs/languages/css'),
  scss: () => import('ngx-highlightjs/languages/scss'),
  typescript: () => import('ngx-highlightjs/languages/typescript'),
  xml: () => import('ngx-highlightjs/languages/xml'),
},

from ngx-highlightjs.

MurhafSousli avatar MurhafSousli commented on June 20, 2024

This is a dependency, how can you receive updates and fixes from the main package then?

from ngx-highlightjs.

thekhegay avatar thekhegay commented on June 20, 2024

@MurhafSousli
pnpm uses linking to node_modules: Flat node_modules is not the only way

So, for libraries there are 2 approaches:

  • Add instructions for pnpm: as i said
    • users needs to install highlight.js directly to their projects
    • or add public-hoist-pattern[]=*highlight.js* to .npmrc
  • Add re exports:
    •  const core = import('highlight.js/lib/core');
       export default core;
      

from ngx-highlightjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.