@pristy/pristy-libvue 0.34.0 → 0.90.0
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 +3 -3
- package/dist/pristy-libvue.js +31844 -2437
- package/dist/pristy-libvue.umd.cjs +248 -1
- package/dist/style.css +1 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -6,14 +6,12 @@ Code factoring for Pristy
|
|
|
6
6
|
|
|
7
7
|
Add `@pristy/pristy-libvue` package.
|
|
8
8
|
|
|
9
|
-
|
|
10
9
|
Then call the available classes where necessary. Be careful, there is no default class, you must use {} in the import.
|
|
11
10
|
|
|
12
11
|
```vue
|
|
13
12
|
import { AlfrescoFileService } from "@pristy/pristy-libvue"
|
|
14
13
|
```
|
|
15
14
|
|
|
16
|
-
|
|
17
15
|
## Dev locally
|
|
18
16
|
|
|
19
17
|
1. In prity-libvue
|
|
@@ -27,8 +25,10 @@ npm link
|
|
|
27
25
|
```
|
|
28
26
|
npm link <local directory off pristy-libvue>
|
|
29
27
|
```
|
|
28
|
+
|
|
30
29
|
The library needs to be built by vite to be usable locally.
|
|
31
|
-
|
|
30
|
+
|
|
31
|
+
```
|
|
32
32
|
npm run build:library
|
|
33
33
|
```
|
|
34
34
|
|