Docsy as npm package inconsistency #1421
-
Hello, I'm trying to migrate a site from Docsy v0.1 (as a submodule) to Docsy v0.6.0 as an npm package. One issue I've run into is that installing Docsy via npm I noticed it due to the release version of 0.6.0 having Bootstrap pinned at 4.6.2, while the latest main has it at 5.2.3. I would love to be able to specify which release version of Docsy to install via npm, but there only seems to be the latest package available. Can we have more versions added to npm? Include at least the latest official release version along with the latest main build on npm? I also noticed in npm info ( |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Good point, indeed there is no npm package available for v0.6.0 .
I will open a issue for this shortly.
Thanks for reporting, this is addressed with #1428. |
Beta Was this translation helpful? Give feedback.
-
@NatasaKralj, to get v0.6.0 of Docsy (which is at hash $ npm install --save-dev google/docsy#semver:0.6.0
...
$ grep 'version.*docsy.git' package-lock.json
"version": "git+ssh://[email protected]/google/docsy.git#5597d435dc74ce68240e0c3871addf24567493b0", Let me know if that works for you. Thanks @deining for jumping in to help while I was busy with BSv5 work. I'll get to your PR soon, and open an issue for updating the docs.
You can use the syntax shown above to install any official release of Docsy. @deining, I've merged your PR (and used it to bump up the version): $ npm view google/docsy
[email protected] | Apache-2.0 | deps: 2 | versions: 1
https://www.docsy.dev
... |
Beta Was this translation helpful? Give feedback.
-
Doc update PR: |
Beta Was this translation helpful? Give feedback.
@NatasaKralj, to get v0.6.0 of Docsy (which is at hash
5597d43
), use the following command:Let me know if that works for you. Thanks @deining for jumping in to help while I was busy with BSv5 work. I'll get to your PR soon, and open an issue for updating the docs.
You can use the syntax shown above to install any official release of Docsy.
@deining, I've merged your PR (and used it to bump up the vers…