Compile Dart to JavaScript.
This plugin requires Grunt ~0.4.1
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-dart2js --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-dart2js');
In your project's Gruntfile, add a section named dart2js
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
dart2js: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
})
Type: Boolean
Default value: false
A boolean indicating whether you'd like to run the minifaction step of the dart2js
compiler.
Type: Boolean
Default value: false
A boolean indicating whether you'd like to run dart2js
with the --checked
flag.
Type: Path
Default value: ~/dart/dart-sdk/bin/dart2js
The location of the dart2js binary.
Type: Path
Default value: null
Set package directory for dart packages.
Type: Boolean
Default value: false
Display lots of information.
Type: Boolean
Default value: false
Use with analyzeOnly
to analyze a command-line app. The default category is Client, which tells dart2js to expect a web app.
Type: Boolean
Default value: false
Like analyzeOnly
, but skip analysis of method bodies and field initializers.
Type: Boolean
Default value: false
Analyze the code, but don’t generate code.
Type: Boolean
Default value: false
Analyze even the code that isn’t reachable from main()
. This option is useful for finding errors in libraries, but using it can result in bigger and slower output.
Type: Boolean
Default value: false
Emit diagnostics, but don’t suggest how to get rid of the diagnosed problems.
Type: Boolean
Default value: false
Don’t display warnings.
Type: Boolean
Default value: false
Don’t display hints.
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.