Skip to content

Commit

Permalink
Issue 30 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamblett authored Dec 29, 2023
1 parent 0d8bb9a commit 26a7cd4
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lib/src/lawndart/src/indexeddb_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//See the License for the specific language governing permissions and
//limitations under the License.

part of lawndart;
part of '../lawndart.dart';

/// Wraps the IndexedDB API and exposes it as a [Store].
/// IndexedDB is generally the preferred API if it is available.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/lawndart/src/local_storage_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//See the License for the specific language governing permissions and
//limitations under the License.

part of lawndart;
part of '../lawndart.dart';

/// Wraps the local storage API and exposes it as a [Store].
/// Local storage is a synchronous API, and generally not recommended
Expand Down
2 changes: 1 addition & 1 deletion lib/src/lawndart/src/map_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//See the License for the specific language governing permissions and
//limitations under the License.

part of lawndart;
part of '../lawndart.dart';

abstract class _MapStore extends Store {
_MapStore._() : super._();
Expand Down
2 changes: 1 addition & 1 deletion lib/src/lawndart/src/memory_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//See the License for the specific language governing permissions and
//limitations under the License.

part of lawndart;
part of '../lawndart.dart';

/// In memory store
class MemoryStore extends _MapStore {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/sporran.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
*/

part of sporran;
part of '../sporran.dart';

/// This is the main Sporran API class.
///
Expand Down
2 changes: 1 addition & 1 deletion lib/src/sporran_database.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
*/

part of sporran;
part of '../sporran.dart';

/// The main Sporran Database class.
///
Expand Down
2 changes: 1 addition & 1 deletion lib/src/sporran_exception.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright : S.Hamblett@OSCF
*/

part of sporran;
part of '../sporran.dart';

/// Sporran exceptions
class SporranException implements Exception {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/sporran_initialiser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Copyright : S.Hamblett@OSCF
*/

part of sporran;
part of '../sporran.dart';

/// Initialisation class, passed to Sporrans constructor
class SporranInitialiser {
Expand Down
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
wilt: '^7.0.0'
json_object_lite: '^4.0.0'
wilt: '^7.0.1'
json_object_lite: '^4.0.1'

dev_dependencies:
test: '^1.21.5'
build_runner: '^2.4.4'
build_test: '^2.1.7'
build_web_compilers: '^4.0.3'
lints: '^2.1.0'
test: '^1.25.0'
build_runner: '^2.4.7'
build_test: '^2.2.2'
build_web_compilers: '^4.0.7'
lints: '^3.0.0'


0 comments on commit 26a7cd4

Please sign in to comment.