ui-strings 0.1.0 → 0.1.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/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,6 +92,15 @@ bun run typecheck
|
|
|
92
92
|
bun run build # bundle dist/cli.js
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
+
To try a local build in another React project without publishing:
|
|
96
|
+
|
|
97
|
+
```sh
|
|
98
|
+
bun run build
|
|
99
|
+
npm link
|
|
100
|
+
# In another React project
|
|
101
|
+
ui-strings scan
|
|
102
|
+
```
|
|
103
|
+
|
|
95
104
|
## Contributing
|
|
96
105
|
|
|
97
106
|
Issues and pull requests are welcome.
|