Open lunika opened 3 years ago
+1
I supposed this can be automated using your CI and on every merge on master, a build is made and pushed on npmjs with the next tag
How would this work with 2FA on npmjs.org?
This is explain here in the npmjs documentation: https://docs.npmjs.com/requiring-2fa-for-package-publishing-and-settings-modification
You should choose this option Require two-factor authentication or automation tokens
to allow your CI to publish using an automation token.
Can I Work On This Build. Thankyou for assigning me if you can.
Is your feature request related to a problem? Please describe.
We would like to easily install the last development version of converse in a project and start theming it without waiting the release of the next version.
We are affected by the singleton bug introduced in version 8 and we have to skip this version to use the future version 9.
Publishing the
next
version can also ease the test of new feature and bug fix without having to modify thenode_modules
of a project and building converse inside it.Describe the solution you'd like
We would like to run something
yarn add converse.js@next
ornpm install --save converse.js@next
.next
is a prerelease and can not be installed by simply runningyarn add converse.js
.I supposed this can be automated using your CI and on every merge on master, a build is made and pushed on npmjs with the
next
tag.