Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
grunt-mobify-cloud
Advanced tools
Grunt plugins used by Adaptive.js projects to interact Mobify's Preview and Release Console
grunt-mobify-cloud
provides three Grunt tasks used for building Adaptive.js projects:
mobify-upload
: Builds a bundle and pushes it to the Mobify Cloud using saved credentials.mobify-save_credentials
: Saves your Mobify Cloud credentials.mobify-verify_adaptive_dependencies
: Verifies that the installed dependancies are valid.Builds a bundle and pushes it to the Mobify Cloud using your saved credentials.
'mobify-upload': {
options: {
projectSlug: 'mobify-test',
settingsFile: './.local-settings'
},
src: ['bld/**', '!bld/test/test-credentials']
}
Refer to Grunt's globbing patterns to specify file paths.
origin
: Where to upload the bundle. Defaults to https://cloud.mobify.com/
.
grunt mobify-upload --origin="http://cloud-test.mobify.com/"
message
: A descriptive message to be associated with the bundle.
grunt mobify-upload --message="An informative and witty bundle message."
deploy-to-target
: Deploys the bundle to a target after it is uploaded.
Useful for build servers.
grunt mobify-upload --deploy-to-target="ci-development"
Stores your email and API key so it can be used for uploads.
'mobify-save_credentials': {
// The location where the credentials will be stored.
src: '/Users/myself/.mobify'
}
To save your credentials:
grunt mobify-save_credentials --user="user@mobify.com" --key="5up3rR4Nd0mK3y"
Verifies your package.json
and bower.json
files against the Mobify Cloud.
grunt mobify-verify_adaptive_dependencies
To deploy this plugin you need to specify some environment variables that specify your github username and password.
export GITHUB_USERNAME='foobarnerson'
export GITHUB_PASSWORD='myaccesstoken'
grunt test
To release a new version of this package:
grunt test
package.json
.CHANGELOG
.npm publish
FAQs
Grunt plugins used by Adaptive.js projects to interact Mobify's Preview and Release Console
The npm package grunt-mobify-cloud receives a total of 1 weekly downloads. As such, grunt-mobify-cloud popularity was classified as not popular.
We found that grunt-mobify-cloud demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.