Questions tagged [npm-version]

We have not provided any instructions for the utilization of this tag … at this time!

Heroku App push was unsuccessful due to compilation failure of the Node.js application

I made sure to include node_modules in .gitignore so that's not causing any issues! Does anyone have a solution for these errors? I've specified versions for both in the engines section. https://i.stack.imgur.com/tMDOd.png Here is the code : { " ...

Utilize a GitHub action to publish npm packages with a specific tag name

I am in the process of transferring our current Travis tasks to GitHub Actions. With Travis, the command below would publish to npm and use the release tag name for the npm version. script: yarn npm-bundle && npm version $TRAVIS_BRANCH --allow-same ...

How can I easily obtain the updated version using my CLI command in NPM?

Imagine having a library that needs to be compiled with webpack, and you want to include a banner like this: // LibraryName vX.X, where vX.X represents its version. You wish to compile it using npm's preversion script as follows: "preversion": "gulp buil ...