Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
grunt-testflight
Advanced tools
Uploads the build to TestFlight
If you haven't used grunt before, be sure to check out the Getting Started guide.
From the same directory as your project's Gruntfile and package.json, install this plugin with the following command:
npm install grunt-testflight --save-dev
Once that's done, add this line to your project's Gruntfile:
grunt.loadNpmTasks('grunt-testflight');
If the plugin has been installed correctly, running grunt --help
at the command line should list the newly-installed plugin's task or tasks. In addition, the plugin should be listed in package.json as a devDependency
, which ensures that it will be installed whenever the npm install
command is run.
In your project's Gruntfile, add a section named testflight
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
testflight: {
iOS: {
options: {
apiToken: 'Enter your api token',
teamToken: 'Enter your team token',
file: 'Enter your build path',
notes: "It's a awesome app!",
distributionLists: ['Enter your distribution list'],
notify: true
}
}
}
})
Type: String
Required. (Get your API token)
Type: String
Required, token for the team being uploaded to. (Get your team token)
Type: String
Required, file path for the build.
Type: String
or function
Required, release notes for the build.
Type: String
Default: null
iOS ONLY - the zipped .dSYM corresponding to the build.
Type: Array
Default: null
distribution list names which will receive access to the build.
Type: Boolean
Default: false
notify permitted teammates to install the build.
Type: Boolean
Default: false
Type: Function
Default: function (responseJson) {}
could be used to get JSON Result testflight sends back to each API call (https://testflightapp.com/api/doc/)
replace binary for an existing build if one is found with the same name/bundle version.
var gitRev = require('git-rev');
grunt.initConfig({
localConfig: grunt.file.readYAML('localConfig.yml');
testflight: {
options: {
apiToken: '<%= localConfig.testflight.apiToken %>',
teamToken: '<%= localConfig.testflight.teamToken %>',
notes: function(done) { // you can use async function.
gitRev.long(function(hash) {
done("commit " + hash);
});
},
distributionLists: ['gatchamen'],
notify: true
},
iOS: {
options: {
file: '<%= localConfig.builds.ipa %>'
}
},
android: {
options: {
file: '<%= localConfig.builds.apk %>'
}
}
}
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
Copyright (c) 2013 Shogo Iwano Licensed under the MIT license.
FAQs
Uploads the build to TestFlight
We found that grunt-testflight 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.