@ember-data-types/store 5.8.0-alpha.29 → 5.8.0-alpha.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -11
- package/package.json +1 -1
- package/unstable-preview-types/index.d.ts +2 -2
package/README.md
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<img
|
|
3
3
|
class="project-logo"
|
|
4
|
-
src="./logos/
|
|
5
|
-
alt="
|
|
6
|
-
width="
|
|
7
|
-
title="
|
|
8
|
-
/>
|
|
9
|
-
<img
|
|
10
|
-
class="project-logo"
|
|
11
|
-
src="./logos/ember-data-logo-light.svg#gh-light-mode-only"
|
|
12
|
-
alt="EmberData Store"
|
|
13
|
-
width="240px"
|
|
14
|
-
title="EmberData Store"
|
|
4
|
+
src="./logos/logo-yellow-slab.svg"
|
|
5
|
+
alt="WarpDrive"
|
|
6
|
+
width="180px"
|
|
7
|
+
title="WarpDrive"
|
|
15
8
|
/>
|
|
16
9
|
</p>
|
|
17
10
|
|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+
[](https://discord.gg/zT3asNS
|
|
15
|
+
)
|
|
16
|
+
[](https://discord.gg/PHBbnWJx5S
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
<br>
|
|
21
|
+
<a href="https://warp-drive.io">WarpDrive</a> is the lightweight data library for web apps —
|
|
22
|
+
<br>
|
|
23
|
+
universal, typed, reactive, and ready to scale.
|
|
24
|
+
<br/><br/>
|
|
25
|
+
</p>
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# @ember-data/store
|
|
30
|
+
|
|
18
31
|
<p align="center">⚡️ The lightweight reactive data library for JavaScript applications</p>
|
|
19
32
|
|
|
20
33
|
This package provides [*Ember***Data**](https://github.com/warp-drive-data/warp-drive/)'s `Store` class.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference path="./configure.d.ts" />
|
|
2
|
-
/// <reference path="./-private.d.ts" />
|
|
3
1
|
/// <reference path="./types.d.ts" />
|
|
2
|
+
/// <reference path="./-private.d.ts" />
|
|
3
|
+
/// <reference path="./configure.d.ts" />
|
|
4
4
|
declare module '@ember-data/store' {
|
|
5
5
|
import { Store } from "@warp-drive/core";
|
|
6
6
|
export { Store as default };
|