- Install the plugin:
pnpm i -D vite-plugin-dart # npm, yarn
-
Install Dart
-
Add
vite-plugin-dart
to yourvite.config.mjs
:
// vite.config.mjs (or .ts)
import Dart from "vite-plugin-dart";
export default {
plugins: [Dart()],
};
It's as simple as:
import "./index.dart";
All your Pub packages should work as expected! For an example take a look at the example folder.
Here's the default options:
const defaultConfig = {
dart: "dart",
minify: false,
"enable-asserts": false,
verbose: false,
define: [],
packages: "",
"suppress-warnings": false,
"fatal-warnings": false,
"suppress-hints": false,
"enable-diagnostic-colors": false,
terse: false,
"show-package-warnings": false,
csp: false,
"no-source-maps": false,
"omit-late-names": false,
O: 1,
"omit-implicit-checks": false,
"trust-primitives": false,
"lax-runtime-type-to-string": false,
verbosity: "warning",
stdio: true,
};
For most, you can read their description by running dart compile js -h -v
.
The ones that are not there are:
dart: Dart binary location
verbosity: Verbosity level (all, info, warning, error)
stdio: Whether or not to pass the dart stdio to parent
It uses JSDoc, so make sure to follow your IDE's annotations.
See the example folder.
All tools used there are Dart packages!
Dart can compile to JS using dart2js
. This plugin compiles your Dart files using that at your OS' tmp folder and then after cleaning the generated sourcemaps, returns it to Vite which imports it.
Most platforms do not provide dart
pre-installed so you need to install it.
The general workflow is: Install Dart => npm i => dart pub get => npm run build
.
For example, here's the Vercel config for this repo:
Build Command: cd example && npm run build
Output Dir: ./example/dist
Install Command: yum install unzip -y && cd example && if [ ! -d "./dart-sdk/" ]; then curl -L https://storage.googleapis.com/dart-archive/channels/be/raw/latest/sdk/dartsdk-linux-x64-release.zip > dart.zip; fi && unzip -qq dart.zip && npm i && ./dart-sdk/bin/dart pub get
At the same time, vite.config.mjs has some options for this plugin based on the current environment:
Dart({
// Optimizations set to 2 on prod
O: mode === "development" ? 1 : 2,
// Dart location when on Vercel (This is a custom env var on Vercel, set to true)
dart: process.env.VERCEL ? "./dart-sdk/bin/dart" : "dart",
}),
- Read the Code of Conduct
- Fork it ( https://github.com/GeopJr/vite-plugin-dart/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Dart and the related logo are trademarks of Google LLC. We are not endorsed by or affiliated with Google LLC.