swipl-wasm 3.3.1 → 3.4.0
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
CHANGED
|
@@ -209,6 +209,21 @@ The package can be built using npm. Please use npm to
|
|
|
209
209
|
add new dependencies and update package-lock.json file. SWI-Prolog WebAssembly
|
|
210
210
|
version is currently built inside Docker with Emscripten.
|
|
211
211
|
|
|
212
|
+
### Development
|
|
213
|
+
|
|
214
|
+
To develop with this package, clone the repository and run:
|
|
215
|
+
|
|
216
|
+
```
|
|
217
|
+
# Install dependencies
|
|
218
|
+
npm ci
|
|
219
|
+
# Build the WebAssembly
|
|
220
|
+
npm run build
|
|
221
|
+
# Run tests
|
|
222
|
+
npm t
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
*Note* You need Docker and Node 16 or higher to installed build the package.
|
|
226
|
+
|
|
212
227
|
## Versioning
|
|
213
228
|
|
|
214
229
|
The package uses its own versioning scheme using semver. It is
|