@model-create/epanet-engine 0.7.1-alpha.3 → 0.8.0-alpha.1
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/LICENSE +21 -0
- package/README.md +7 -8
- package/dist/index.d.ts +1661 -681
- package/dist/index.js +91 -15
- package/package.json +16 -16
- package/Dockerfile +0 -9
- package/build.sh +0 -58
- package/dist/index.es6.js +0 -3
- package/dist/index.html +0 -319
- package/index.html +0 -319
- package/src/epanet_wrapper.cpp +0 -1131
- package/src/index.d.ts +0 -691
- package/src/wrapper/cjs-postfix.js +0 -7
- package/src/wrapper/cjs-prefix.js +0 -9
- package/src/wrapper/es6-postfix.js +0 -2
- package/test.c +0 -54
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Luke Butler
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -6,30 +6,29 @@ Internal engine for [epanet-js](https://github.com/modelcreate/epanet-js), C sou
|
|
|
6
6
|
|
|
7
7
|
## Build
|
|
8
8
|
|
|
9
|
-
epanet-js is split into two packages, the epanet-engine package which
|
|
9
|
+
epanet-js is split into two packages, the epanet-engine package which compiles the original C code into WASM using Emscripten. And epanet-js is a TypeScript library which wraps over the generated module from Emscripten and manages memory allocation, error handling and returning of varaible.
|
|
10
10
|
|
|
11
11
|
**Building epanet-engine**
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Run the command `pnpm run build` to creates a docker container of Emscripten and the compiled OWA-EPANET source code and generate types.
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
16
|
cd packages/epanet-engine
|
|
17
|
-
|
|
18
|
-
yarn run build
|
|
17
|
+
pnpm run build
|
|
19
18
|
```
|
|
20
19
|
|
|
21
20
|
**Building epanet-js**
|
|
22
21
|
|
|
23
|
-
You must first build epanet-engine before you can
|
|
22
|
+
You must first build epanet-engine before you can test or build epanet-js.
|
|
24
23
|
|
|
25
24
|
```sh
|
|
26
25
|
cd packages/epanet-js
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
yarn run build
|
|
26
|
+
pnpm run test
|
|
27
|
+
pnpm run build
|
|
30
28
|
```
|
|
31
29
|
|
|
32
30
|
## License
|
|
31
|
+
|
|
33
32
|
The epanet-js and @model-create/epanet-engine are [MIT licenced](https://github.com/modelcreate/epanet-js/blob/master/LICENSE).
|
|
34
33
|
|
|
35
34
|
The hydraulic engine used within the epanet-js library is [OWA-EPANET](https://github.com/OpenWaterAnalytics/EPANET), which is [MIT licenced](https://github.com/OpenWaterAnalytics/EPANET/blob/dev/LICENSE), with contributed by the following [authors](https://github.com/OpenWaterAnalytics/EPANET/blob/dev/AUTHORS).
|