@arbocollab/arbo-web-search 1.0.7 → 1.0.8
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 +43 -0
- package/dist/css/main.css +1 -1
- package/dist/es/index.es.js +4181 -4130
- package/dist/es/index.es.js.map +1 -1
- package/dist/umd/index.umd.js +14 -14
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,3 +3,46 @@
|
|
|
3
3
|
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
4
|
|
|
5
5
|
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
|
6
|
+
|
|
7
|
+
<br>
|
|
8
|
+
|
|
9
|
+
# 📦 Steps to Publish Package to Live
|
|
10
|
+
|
|
11
|
+
## 🔧 Build the Package
|
|
12
|
+
|
|
13
|
+
1. Start the development environment
|
|
14
|
+
```
|
|
15
|
+
make up
|
|
16
|
+
make serve
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
2. Update the ui-components package versions
|
|
20
|
+
```
|
|
21
|
+
npm install @arbocollab/arbo-ui-components@1.0.368
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
3. Update the package version
|
|
25
|
+
```
|
|
26
|
+
"version": "1.0.x"
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
4. Build for production
|
|
30
|
+
```
|
|
31
|
+
npm run build:lib-production
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## 🔧 Publish the Package
|
|
35
|
+
|
|
36
|
+
1. Validate updated version in dist/package.json
|
|
37
|
+
2. Validate domain `(tessr.us)` in dist/dist/umd/index.umd.js
|
|
38
|
+
|
|
39
|
+
3. Publish package
|
|
40
|
+
```
|
|
41
|
+
npm run publish-lib:npmjs
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
4. Purge CDN cache
|
|
45
|
+
```
|
|
46
|
+
curl -X PURGE https://cdn.jsdelivr.net/npm/@arbocollab/arbo-web-search@latest
|
|
47
|
+
curl -X PURGE https://cdn.jsdelivr.net/npm/@arbocollab/arbo-web-search@latest/dist/css/main.css
|
|
48
|
+
```
|