mirror of https://github.com/AMT-Cheif/drift.git
Don't export core moor from moor_web
This commit is contained in:
parent
7c62d6cdd1
commit
9e1a12432a
|
@ -1,6 +1,8 @@
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
|
import 'package:moor/moor.dart';
|
||||||
import 'package:moor/moor_web.dart';
|
import 'package:moor/moor_web.dart';
|
||||||
|
|
||||||
import 'package:test/test.dart';
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
// Created from an empty sqlite file with
|
// Created from an empty sqlite file with
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
@TestOn('browser')
|
@TestOn('browser')
|
||||||
import 'dart:html';
|
import 'dart:html';
|
||||||
|
|
||||||
|
import 'package:moor/moor.dart';
|
||||||
import 'package:moor/moor_web.dart';
|
import 'package:moor/moor_web.dart';
|
||||||
import 'package:test/test.dart';
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
## unreleased
|
## 3.0.0-dev
|
||||||
|
|
||||||
|
- __Breaking__: `package:moor/moor_web.dart` no longer exports `package:moor/moor.dart`.
|
||||||
|
|
||||||
- Experimentally support IndexedDB to store sqlite data on the web
|
- Experimentally support IndexedDB to store sqlite data on the web
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,5 @@ import 'moor.dart';
|
||||||
import 'src/web/binary_string_conversion.dart';
|
import 'src/web/binary_string_conversion.dart';
|
||||||
import 'src/web/sql_js.dart';
|
import 'src/web/sql_js.dart';
|
||||||
|
|
||||||
export 'moor.dart';
|
|
||||||
|
|
||||||
part 'src/web/storage.dart';
|
part 'src/web/storage.dart';
|
||||||
part 'src/web/web_db.dart';
|
part 'src/web/web_db.dart';
|
||||||
|
|
Loading…
Reference in New Issue