Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
ember-cli-build-info
Advanced tools
Inject build information (version, current SHA) into your Ember app.
Inject build info into your routes, controllers, and services.
Note: this addon currently assumes you are using git for version control.
Information includes:
buildInfo: {
semver: '0.1.4-beta.1+53df212',
version: '0.1.4',
release: 'beta.1',
build: '53df212'
}
See semver-utils.parse for a list of all values available.
npm install --save-dev ember-cli-build-info
The data is injected into routes, controllers, and services using the buildInfo
key.
In a template:
<p>Version: {{buildInfo.version}}</p>
<p>Release: {{buildInfo.release}}</p>
<p>SHA: {{buildInfo.build}}</p>
In a route, controller, or service:
var buildInfo = this.buildInfo;
There is currently a single configurable option. Customize using the buildInfoOptions
hash in your Brocfile:
var app = new EmberApp({
buildInfoOptions: {
metaTemplate: 'version={VERSION}'
}
});
metaTemplate
Allows you to inject a meta tag containing the build info. Defaults to false
.
Available template keys include {SEMVER}
, {VERSION}
, {RELEASE}
and {BUILD}
. These keys will be replaced by the current build info values.
The example above would yield:
<meta name="build-info" content="version=0.0.2"/>
Note that
{COMMIT}
is deprecated in favour of{BUILD}
.
This README outlines the details of collaborating on this Ember addon.
git clone
this repositorynpm install
bower install
ember server
npm test
(Runs ember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
FAQs
Inject build information (version, current SHA) into your Ember app.
We found that ember-cli-build-info demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.