@lucid-evolution/uplc 0.2.13 → 0.2.15

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
@@ -1,7 +1,25 @@
1
+ # Development Environment Setup
2
+
3
+ ## 1. Enter Development Environment
4
+
5
+ To start working in the development environment, run the following command:
6
+
7
+ ```bash
8
+ nix develop
1
9
  ```
2
- cd rust
10
+
11
+ ## 2. Build the Rust Project & Generate WASM Files
12
+
13
+ Before continuing, please note that this step is not part of the CI process. You'll need to run it locally to build the Rust project and generate the required WASM files:
14
+
15
+ ```bash
16
+ pnpm build-local
3
17
  ```
4
18
 
19
+ ## 3. Build the UPLC Package
20
+
21
+ Once you've completed the previous step, you can build the UPLC package by running:
22
+
5
23
  ```
6
- wasm-pack build --target nodejs
24
+ pnpm build
7
25
  ```
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucid-evolution/uplc",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "main": "./dist/node/uplc_tx.js",
5
5
  "browser": "./dist/browser/uplc_tx.js",
6
6
  "types": "./dist/node/uplc_tx.d.ts",