Jump to content
Search Community

Prasanna

Members
  • Posts

    61
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Prasanna's Achievements

  1. @gaggo I believe this problem is caused by the pnpm not handling package name aliases properly. Unfortunately this problem is a bug in pnpm at the moment. I'll try to find a workaround, will comment here if successful.
  2. @dagda1 it appears that in your installation is creating a `@gsap/shockingly` folder instead of `gsap`. This might be due to the pnpm version that you're using. The easiest solution for you would be to run `pnpm add @gsap/shockingly` and import the packages using `import GSAP from '@gsap/shockingly'` Otherwise, try updating the pnpm version and you should be good too
  3. I just checked the server logs and it seems like there were a few D-DOS attempts on the server and it is quite possible that @Supachaiwas trying to install during the same time. The D-DOS attack could have affected the response speeds. We gracefully handle DDOS attacks, but unfortunately due to the intensity of such attacks some responses could be delayed. @Supachai we hope you don't experience such issues again, but let us know if it does. We will consider some improvements on the infra.
  4. @TimTh Sure, sent you my email address via DM 👍
  5. Hello @TimTh The error that you're getting is strange - reminds me of an error from NodeJs version 8. Can you check which version of nodejs you are using (node -v)? Alternatively, you could also run this command to configure the token: ``` npm config set @gsap:registry https://npm.greensock.com npm config set //npm.greensock.com/:_authToken xxxxx-xxxx-xxxx ``` Make sure to replace `xxxxx-xxxx-xxxx` with your token. Then running $npm i @gsap/shockingly should work 👍
  6. Hello @Basebuilder, it appears that the version of yarn cli that you are using in bitbucket pipelines could be the issue. Can you try doing this instead: Run this command once in the repo $ yarn add @gsap/business gsap@npm:@gsap/business This should fix the pipelines.
  7. Hello @Cassie, `always-auth=true` forces npm to always require authentication when accessing the registry. However, this is an optional command and is only required in some scenarios, but feel free to add it You cal also link it to a tutorial on PrivJs Blog if that's helpful to the users: https://www.privjs.com/blog/how-to-install-club-greensock-packages-on-vps
  8. Hello @4eck-media, could you check if your live servers have any domain whitelist? In some servers devops engineers enforce domain name whitelisting in order to prevent unintended requests. If your servers have the same, kindly add `https://npm.greensock.com` to the whitelist and everything should work fine ?
  9. Hello @thefa, Adding a .npmrc file to your project should solve the problem. Steps: 1. Add a new file `.npmrc` in your project root 2. Add the following content in the `.npmrc` file: ``` @gsap:registry=https://npm.greensock.com //npm.greensock.com/:_authToken=xxxx-yyyy-zzzz ``` 3. Replace `xxxx-yyyy-zzzz` with your access token Pro tip: You can also store the token as env variables
  10. Hello @derekobrien, I don't have an auth.json file with me, but I believe now you can use environment variables instead as well. (https://www.deployhq.com/support/config-files#environment-variables). You only need to add a .npmrc file to your project: @gsap:registry=https://npm.greensock.com //npm.greensock.com/:_authToken=${PRIVJS_TOKEN} Then add an environment variabled named `PRIVJS_TOKEN` in your deployHQ server. This should install the packages from greensock registry.
  11. Hello everybody, I am sorry that you faced an issue. Our services went offline intermittently today as we experienced a DDOS attack on our systems. There's nothing to worry as our service actively fended off the attacks, but couldn't serve few users for a short while. We have increased our server capacity in order to prevent such scenarios in the future. My apologies for the inconvenience
  12. Hello @Meet Bhatt, yarn tries to install all packages when you run the install command. That's likely the reason why .tgz install failed. Regarding the vercel issue, can you try to follow the steps mentioned in this article and see if that helps? https://blog.privjs.com/article/how-to-install-club-greensock-packages-on-vercel
  13. Hello everybody, my sincere apologies for all these issues. In the last 24 hours we recieved a massive number of requests which our cloud service failed to handle. The services are back online now. Our team has also put measures to prevent this from happening again. Going forward, we will be migrating our services to multiple cloud services in order to prevent any downtime. I am very sorry for the troubles you faced in the past 24 hours. Prasanna
  14. Hello everybody, my sincere apologies for all these issues. In the last 24 hours we recieved a massive number of requests which our cloud service failed to handle. The services are back online now. Our team has also put measures to prevent this from happening again. Going forward, we will be migrating our services to multiple cloud services in order to prevent any downtime. I am very sorry for the troubles you faced in the past 24 hours. Prasanna
  15. I tried replicating it with yarn version 1.0. It is strange that yarn is not reading the env variables. Since you are using yarn, it could help if you rename `.npmrc` to `.yarnrc`. If this still doesn't help, then running the commands on the machine should configure the values: ``` $ yarn config set @gsap:registry https://npm.greensock.com $ yarn config set //npm.greensock.com/:_authToken <token here> ```
×
×
  • Create New...