You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Observe that the version format is a hyphen-separated concatenation of the package name and the version number
Actual Results:
The format for the version number is a hyphen-separated concatenation of the package name and the version number - cowsay-v1.4.0.
> notion install cowsay
Fetching cowsay-v1.4.0 [========================================] 100%
npm notice created a lockfile as package-lock.json. You should commit this file.
added 9 packages from 2 contributors and audited 1535 packages in 2.954s
found 0 vulnerabilities
Expected Results:
The format is an @ separated concatenation of the package name and version number - [email protected]
> notion install cowsay
Fetching [email protected] [========================================] 100%
npm notice created a lockfile as package-lock.json. You should commit this file.
added 9 packages from 2 contributors and audited 1535 packages in 2.954s
found 0 vulnerabilities
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
notion install cowsay
Actual Results:
The format for the version number is a hyphen-separated concatenation of the package name and the version number -
cowsay-v1.4.0
.Expected Results:
The format is an
@
separated concatenation of the package name and version number -[email protected]
The text was updated successfully, but these errors were encountered: