This release renames the `build` and `lib` export paths to `build-time` and `run-time`, respectively (#104).
## Migration guide
You need to adapt your imports like this:
* ```diff
-import … from "userscripter/build";
+import … from "userscripter/build-time";
```
* ```diff
-import … from "userscripter/lib/foo";
+import … from "userscripter/run-time/foo";
```
This command should accomplish that in a typical Git-tracked userscript:
```bash
for f in $(git ls-files "$(git rev-parse --show-toplevel)"); do
sed -i 's#userscripter/build#userscripter/build-time#g' $f
sed -i 's#userscripter/lib#userscripter/run-time#g' $f
done
```