uikit / uikit

A lightweight and modular front-end framework for developing fast and powerful web interfaces

Home Page:http://getuikit.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm install uikit@latest installs 3.17.6 and npm install uikit@3.19.1 returns error

oshihirii opened this issue · comments

Hello,

I believe the latest version of UIKit is:

https://github.com/uikit/uikit/releases/tag/v3.19.1

I started looking at an old project today and decided to update UIkit in it.

I started with this in package.json:

"uikit": "^3.8.2-dev.713899c03"

I ran this:

npm install uikit@latest --save-dev

Then package.json showed this:

"uikit": "^3.17.6"

So I ran this:

npm install uikit@3.19.1 --save-dev

And got this error:

npm ERR! code ETARGET
npm ERR! notarget No matching version found for uikit@3.19.1.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.

Can you please tell me how I can update UIkit to the latest version?

Thank You.

Update:

I was using Starlink and somehow that didn't play well with any npm commands.

So I connected to a VPN and ran:

npm install -g npm --verbose
npm install uikit@latest --save-dev

And everything worked as expected, ie package.json now shows:

"uikit": "^3.19.1",