Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ember-cli-deploy-display-revisions
Advanced tools
Display a list of deployed revisions using ember-cli-deploy.
Display a list of deployed revisions using ember-cli-deploy. This plugin is for ember-cli-deploy
>= 0.5.0.
ember install ember-cli-deploy-display-revisions
ENV['display-revisions'] = {
amount: 10,
revisions: function(context) {
return context.revisions;
}
}
Number of revisions displayed in the results table
Default: 10
The data to be displayed
Default: context.revisions
, usually received from fetchRevisions
ember deploy:list <environment>
to list the latest 10 revisionsember deploy:list --amount <N> <environment>
to list the latest revisionsember-cli-deploy-display-revisions
expects the fetchRevisions
to be implemented by your index plugin, filling the revisions
variable in context in the following format:
[
{
revision: 'abc123', // mandatory
version: 'v1',
timestamp: 1438232435000, // milliseconds since epoch
deployer: 'cats'
},
{
revision: 'def456',
version: 'v2',
timestamp: 1032123128000,
deployer: 'dogs',
active: true // indicate whether this revision is activated
}
]
Omitted keys are not displayed in listing the results.
ember build
and ember test
don't workSince this is a node-only ember-cli addon, this package does not include many files and dependencies which are part of ember-cli's typical ember build
and ember test
processes.
FAQs
Display a list of deployed revisions using ember-cli-deploy.
We found that ember-cli-deploy-display-revisions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.