@zeedhi/teknisa-cli 1.95.0 → 1.96.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.96.0",
|
|
4
4
|
"description": "Teknisa CLI",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"/src",
|
|
35
35
|
"/bin"
|
|
36
36
|
],
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "dfe5f1a2a802cfea057de278b8e41f6858b43073"
|
|
38
38
|
}
|
|
@@ -16,7 +16,7 @@ export default class Mircroservice extends Vue {
|
|
|
16
16
|
this.setProductInfoLocalStorage();
|
|
17
17
|
|
|
18
18
|
if (process.env.NODE_ENV === 'production') {
|
|
19
|
-
return `${window.location.origin}/${module}`;
|
|
19
|
+
return `${window.location.origin}/${module}?v=${new Date().getTime()}`;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
const userAuth = JSON.stringify({
|
|
@@ -41,7 +41,7 @@ export default class Mircroservice extends Vue {
|
|
|
41
41
|
if (!this.page) {
|
|
42
42
|
this.page = page;
|
|
43
43
|
}
|
|
44
|
-
return `${Config.env.modules[module].baseUrl}?page=${page}&user_auth=${userAuth}&product_info=${productInfo}`;
|
|
44
|
+
return `${Config.env.modules[module].baseUrl}?page=${page}&user_auth=${userAuth}&product_info=${productInfo}&v=${new Date().getTime()}`;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
private setProductInfoLocalStorage() {
|