Jump to content
Search Community

denglertarea23

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by denglertarea23

  1. I am not sure if that's valid semantic html is it? Seems like a hacky work around, this is still a bug for me over a year later. I'm trying to split a <p> tag into lines, works fine, but when I have a <span> tag that adds any style inside the <p> SplitText will add a line break after the </span> One of the hacks that seems to work: https://codepen.io/denglert/pen/VwNoOKg (split on words and add a hack to get it working with lines) Same code but removed the hack to show splitting on lines is creating unnecessary line breaks: https://codepen.io/denglert/pen/QWPeRpG (this is the bug) Is there a fix for this yet? The site I'm working on now is splitting lines incorrectly and I'd rather not have to put hacks in place. Thanks in advance!
  2. Thanks for looking into this Jack, you pointed me in the right direction: I forgot to copy .npmrc file prior to building in my Dockerfile: FROM node:18-alpine AS deps WORKDIR /app COPY package.json ./ COPY .npmrc ./ RUN npm install I added COPY .npmrc ./ and everything works fine. Kind of a "duh" moment! I do have a business account, my problem was related to .npmrc Thanks again for the speedy reply! Daniel
  3. I just purchased Business license and I cannot install in Azure pipelines. I'm using a dockerfile, nextjs project, but I get these errors in my Azure pipeline: Please help I need to stage my project for a client review! I created the .npmrc file with my token. Thanks! ##[error]#13 32.00 npm ERR! 404 Not Found - GET https://registry.npmjs.org/@gsap%2fbusiness - Not found ##[error]#13 32.00 npm ERR! 404 ##[error]#13 32.00 npm ERR! 404 '@gsap/business@^3.12.5' is not in this registry. ##[error]#13 32.00 npm ERR! 404 ##[error]#13 32.00 npm ERR! 404 Note that you can also install from a ##[error]#13 32.00 npm ERR! 404 tarball, folder, http url, or git url.
×
×
  • Create New...