lakelib 0.0.5 → 0.0.6
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 +2 -2
- package/dist/lake.min.js +20 -20
- package/dist/lake.min.js.map +1 -1
- package/lib/lake.js +59 -24
- package/lib/lake.js.map +1 -1
- package/lib/types/editor.d.ts +1 -0
- package/lib/types/managers/history.d.ts +1 -1
- package/lib/types/types/object.d.ts +6 -0
- package/lib/types/ui/toolbar.d.ts +2 -8
- package/package.json +18 -13
package/README.md
CHANGED
|
@@ -66,9 +66,9 @@ cd lake
|
|
|
66
66
|
# install all dependencies
|
|
67
67
|
pnpm install
|
|
68
68
|
# build CodeMirror
|
|
69
|
-
pnpm codemirror
|
|
69
|
+
pnpm build:codemirror
|
|
70
70
|
# start a local server
|
|
71
|
-
pnpm
|
|
71
|
+
pnpm dev
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
You can now view all demos by visiting `http://localhost:8080/examples/`.
|