@arbocollab/arbo-web-search 1.0.6 → 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 CHANGED
@@ -4,22 +4,45 @@ This template should help get you started developing with Vue 3 and TypeScript i
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
6
 
7
+ <br>
7
8
 
8
- # Step to publish package to live
9
+ # 📦 Steps to Publish Package to Live
9
10
 
10
- ### Build package
11
+ ## 🔧 Build the Package
11
12
 
13
+ 1. Start the development environment
14
+ ```
12
15
  make up
13
16
  make serve
14
-
15
- Update the ui-components package versions
16
- > npm install @arbocollab/arbo-ui-components@1.0.368
17
-
18
- Update the package version
19
- > "version": "1.0.6",
20
-
21
- > npm install
22
-
23
- ## Publish package
24
-
25
- > make
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
+ ```