drift/docs
ckroot b9070ef6a2
change name of the update method
The name of the method update in line 140 Cause exceptions for the methods `moveImportantTasksIntoCategory` and `update` method itself .
The problem is when these two methods try to call the native update method on `package:drift/src/runtime/api/runtime_api.dart` the program use the update method define in this page and trigger exceptions . It takes me lots of time .
2022-02-11 13:04:02 +00:00
..
lib Fix docs build, retire master branch 2022-02-09 16:08:08 +01:00
pages change name of the update method 2022-02-11 13:04:02 +00:00
templates Upgrade built_site and docsy 2022-01-22 21:06:26 +01:00
tool Back to `dartdoc` due to missing options 2022-02-09 16:43:39 +01:00
web Add Flutter favorite icon to website 2021-12-09 00:21:57 +01:00
README.md Update storage_inspector in community tools 2022-02-02 17:19:59 +01:00
build.deploy.yaml Fix typo in prod build config 2021-10-12 15:17:40 +02:00
build.yaml Start preparing the documentation for the new name 2021-10-09 21:43:30 +02:00
pubspec.yaml Recommend using isolates in docs 2022-01-24 13:26:46 +01:00
theme.yaml Add search to documentation 2021-08-09 18:32:09 +02:00
website.yaml Fix docs build, retire master branch 2022-02-09 16:08:08 +01:00

README.md

Drift documentation

Welcome to the source of drift's documentation, live at drift.simonbinder.eu. We use a static site generator based on build_runner to build the documentation.

Running the website locally

For a fast edit-refresh cycle, run

dart pub global run webdev serve --auto refresh pages:9999 web:8080

You can ignore the pages:9999 (or use any other port), it's just required so that the build system actually generates pages.

Building the website

To build the website, first run

dart run build_runner build --release

To then copy generated contents into a directory, use:

dart run build_runner build --release --output web:out

Where out is the desired output directory. Note that both steps are necessary since the build system doesn't re-generate pages otherwise.