
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ember-cli-app-version
Advanced tools
Adds your Ember App's version to Info tab in Ember Inspector. The version is taken from your project's package.json#version. If you add build metadata to the version, this addon will automatically append SHA to the end of the version.
ember install ember-cli-app-version
This addon provides {{app-version}}
helper that allows you to show your current app version in your app.
The addon has flags to display parts of the version:
{{app-version versionOnly=true}} // => 2.0.1
{{app-version versionOnly=true showExtended=true}} // => 2.0.1-alpha.1
{{app-version shaOnly=true}} // => <git SHA>
Flags are false
by default.
When running on Heroku the .git
folder is not present, making it impossible to fetch the git SHA
. A workaround for this is adding the below in your config/environment.js
:
// Heroku Git Hash support
if (process.env.SOURCE_VERSION) {
const pkg = require('../package.json');
const hash = process.env.SOURCE_VERSION.substr(0, 7);
ENV['ember-cli-app-version'] = {
version: `${pkg.version}+${hash}`,
};
}
See the Contributing guide for details.
This project is licensed under the MIT License.
v7.0.0 (2024-06-10)
FAQs
Adds App version number to Ember Inspector Info Tab
The npm package ember-cli-app-version receives a total of 728 weekly downloads. As such, ember-cli-app-version popularity was classified as not popular.
We found that ember-cli-app-version demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.