@inco/lightning-preview 0.8.0-devnet-2 → 0.8.0-devnet-3
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 +22 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
1
|
# Inco Lightning Preview
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This package contains preview features for Inco Lightning that are not yet publicly released. It mirrors the core Lightning file structure to maintain consistency.
|
|
4
|
+
|
|
5
|
+
> **Note:** Features in this package are experimental and may change before public release.
|
|
6
|
+
|
|
7
|
+
## Structure
|
|
8
|
+
|
|
9
|
+
The `src/` directory mirrors the core `lightning/` structure:
|
|
10
|
+
|
|
11
|
+
- `IncoLightningPreview.sol` - Preview contract extensions
|
|
12
|
+
- `Preview.Lib.sol` - Preview library functions
|
|
13
|
+
- `lightning-parts/` - Preview components
|
|
14
|
+
- `test/` - Tests for preview features
|
|
15
|
+
|
|
16
|
+
## Makefile Commands
|
|
17
|
+
|
|
18
|
+
| Command | Description |
|
|
19
|
+
| --------------- | ------------------------ |
|
|
20
|
+
| `make build` | Build contracts |
|
|
21
|
+
| `make test_all` | Run all tests |
|
|
22
|
+
| `make lint` | Run linter |
|
|
23
|
+
| `make lint_fix` | Auto-fix linting issues |
|
|
24
|
+
| `make publish` | Build and publish to npm |
|