@sdeverywhere/check-core 0.1.1 → 0.1.2
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 +28 -2
- package/dist/index.cjs +425 -190
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1272 -0
- package/dist/index.d.ts +75 -51
- package/dist/index.js +425 -191
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,33 @@
|
|
|
1
1
|
# @sdeverywhere/check-core
|
|
2
2
|
|
|
3
|
-
This package provides the core implementation of
|
|
4
|
-
|
|
3
|
+
This package provides the core implementation of the System Dynamics model checking and comparison functionality in [SDEverywhere](https://github.com/climateinteractive/SDEverywhere).
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
The best way to get started with SDEverywhere is to follow the [Quick Start](https://github.com/climateinteractive/SDEverywhere#quick-start) instructions.
|
|
8
|
+
If you follow those instructions, the `@sdeverywhere/plugin-check` package will be added to your project, and that package uses `@sdeverywhere/check-core` as an implementation detail.
|
|
9
|
+
Therefore, most users do not need to install this package directly.
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
As noted above, most users do not need to install this package directly, but for more advanced use cases, it can be installed as follows.
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
# npm
|
|
17
|
+
npm install @sdeverywhere/check-core
|
|
18
|
+
|
|
19
|
+
# pnpm
|
|
20
|
+
pnpm add @sdeverywhere/check-core
|
|
21
|
+
|
|
22
|
+
# yarn
|
|
23
|
+
yarn add @sdeverywhere/check-core
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
Most users do not need to interact with the `@sdeverywhere/check-core` package directly; it is primarily used in the implementation of `@sdeverywhere/plugin-check` and the related UI package, `@sdeverywhere/check-ui-shell`.
|
|
29
|
+
|
|
30
|
+
However, if you would like to build a custom tool for running checks and comparison tests on models, you can refer to the API documentation below for more details.
|
|
5
31
|
|
|
6
32
|
## Documentation
|
|
7
33
|
|